GDBG. GridBoundColumn.Format

Hi All, I Use this code for format my cell for(Int32 i = 3; i < m_Quotes.GridBoundColumns.Count; i++) { GridBoundColumn c = m_Quotes.GridBoundColumns[i]; c.StyleInfo.Format = "#.##"; } But it does not work. How can I resolve it? Regards, Slava.

1 Reply

AD Administrator Syncfusion Team May 18, 2004 12:38 PM UTC

You should also set the CellValueType, otherwise the formatting will not ''take''. c.StyleInfo.CellValueType = typeof(double);

Loader.
Up arrow icon