sets a mask for formatting numeric data (works for "edn", "ron" excell only)
mask | string | a numeric mask; for example 0,000.00 - 1,234.56 |
cInd | number | the index of a column |
p_sep | string | a char used as a decimal separator (point by default) |
d_sep | string | a char used as groups part separator (comma by default) |
Available only in PRO Edition
mygrid.setNumberFormat("0,000.00",index,".",",");
Back to top