cxgrid统计字段的自定义格式

格式可以是:‘合计:#0.00元’,也可以是:‘共有#0条记录’。中间的数字格式规格跟delphi中的一致,如:

The following table shows some sample formats and the results produced when the formats are applied to different values:

Format string-   1234      -1234    0.5    0 
0 1234 -1234 1 0
0.00  1234.00 -1234.00 0.50 0.00
#.##   1234 -1234 .5 
#,##0.00 1,234.00 -1,234.00 0.50 0.00
#,##0.00;(#,##0.00) 1,234.00 (1,234.00) 0.50 0.00
#,##0.00;;Zero  1,234.00 -1,234.00 0.50 Zero
0.000E+00    1.234E+03 -1.234E+03 5.000E-01 0.000E+00
#.###E-0   1.234E3 -1.234E3 5E-1 0E0

你可能感兴趣的:(cxgrid统计字段的自定义格式)