Can anyone tell me, How to set maximum length of the ultragrid column and also its allow both negative and nonnegative values.
MaxLength=3;
Style = its accepts values like 123 as well as -12.
ultraGrid1.DisplayLayout.Bands[0].Columns[X].MaxLength = 3;
where X is the column index or column key
this thing is not working.
use FieldLen instead of MaxLength.
ultraGrid1.DisplayLayout.Bands[0].Columns[X].FieldLen= 3;