Hi,
I'm using wingrid and I want to display number's in their scientific format. When I write for example 10E2, it's automatically displyed as 10000 and I don't want this behavior. Is it possible to avoid this and let cell display 10E2?
Thanks
It means that I could not do it on active cell?
For example, in event AfterCellUpdate(sender,e) I can't use e.cell.Column.Format="E" ?
Thanks.
No, you need to do it on the column.
_grid.DisplayLayout.Bands[0].Columns[0].Format = "E";
Hi ,
Could you please give more explanation?
I have set this property to "E", nothing changes. Is it e.Cell.Column.Format="E" ?
Set the Format property on the column to "E". Use "E5" if you want to round to 5 significant numbers.