AD
Administrator
Syncfusion Team
August 16, 2006 12:27 AM UTC
I do not know how you can do this with a CurrencyEdit cell. But it is simple to do with a standard TextBox cell with a numerical CellValueType and a properly set Format string.
this.gridControl1[4,4].CellValueType = typeof(decimal);
this.gridControl1[4,4].Format = "$0.00###";
AD
Administrator
Syncfusion Team
August 16, 2006 11:47 AM UTC
Clay,
Thanks, I''d stumbled on this approach yesterday, I appreciate your response though!
>I do not know how you can do this with a CurrencyEdit cell. But it is simple to do with a standard TextBox cell with a numerical CellValueType and a properly set Format string.
this.gridControl1[4,4].CellValueType = typeof(decimal);
this.gridControl1[4,4].Format = "$0.00###";