I have the decimal value in ultragrid columns.
How can I set maximum length or value to this column??
UltraGridColumn exposes 'MinValue' and 'MaxValue' properties, so you can use those to enforce a valid range. Note that when you set the property, you should first assign the value to a variable of the same type as the column (System.Decimal in your case), and assign that value to the property, so as to avoid inadvertant conversions by the development environment.