Version

MinLength Property

Gets/sets the minimum length of the text that can be entered into a cell. The default value is 0.
Syntax
'Declaration
 
Public Property MinLength As Integer
public int MinLength {get; set;}
Remarks

The MinLength property gives you the ability to require a certain amount of text that must be entered in column cells. You can use this property to enforce database-specific or application specific limitations.

Example
This snippet demonstrates how the length of a cell value can be restricted via the MinLength and MaxLength properties.

Private Sub SetupGrid()
   ' Set the "fname" column to only allow values that are between 1 and 15 characters long.
   '
   Me.ultraGrid1.DisplayLayout.Bands("customers").Columns("fname").MinLength = 1
   Me.ultraGrid1.DisplayLayout.Bands("customers").Columns("fname").MaxLength = 15
End Sub
private void SetupGrid()
{
	// Set the "fname" column to only allow values that are between 1 and 15 characters long.
	//
	this.ultraGrid1.DisplayLayout.Bands["customers"].Columns["fname"].MinLength = 1;
	this.ultraGrid1.DisplayLayout.Bands["customers"].Columns["fname"].MaxLength = 15;	
}
Requirements

Target Platforms: Windows 10, Windows 8.1, Windows 8, Windows 7, Windows Server 2012, Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2

See Also