Hello
In a column "Numbers" i want the following Output
If the Value for example 1 I want the Output Format 1,00
UltraGridColumn uCol = ultraGrid1.DisplayLayout.Bands[0].Columns["Numbers"];
string strWert = "1,00"
e.Row.Cells["Numbers"].Value = strWert;
Hello Andreas,
Maybe you could try to set Format property of this column. Please take a look in our online documentation for more details:
http://help.infragistics.com/Help/Doc/WinForms/2013.2/CLR4.0/html/Infragistics4.Win.UltraWinGrid.v13.2~Infragistics.Win.UltraWinGrid.UltraGridColumn~Format.html
If you want to keep this formatting during cell edit, you could set also MaskInput property
http://help.infragistics.com/Help/Doc/WinForms/2013.2/CLR4.0/html/Infragistics4.Win.UltraWinGrid.v13.2~Infragistics.Win.UltraWinGrid.UltraGridColumn~MaskInput.html
Let me know if you have any questions.
Regrads
Hi,
If you need any additional assistance don’t hesitate to ask.
Regards