The MaxLength property gives you the ability to limit the amount of text that can be entered in column cells. You can use this property to enforce database-specific or application specific limitations.
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; }
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