我现在有个需求,一个单元格需要对数字进行格式化,999,999.99 这种类型
我的设置如下:
FarPoint.Web.Spread.DoubleCellType g = new FarPoint.Web.Spread.DoubleCellType();
System.Globalization.NumberFormatInfo nfi = new System.Globalization.NumberFormatInfo();
nfi.NumberDecimalDigits = 3;
nfi.NumberDecimalSeparator = ",";
g.NumberFormat = nfi;
FpSpread1.ActiveSheetView.Cells[0, 0].CellType = g;
现在 ,单元格如果输入9999.99,会提示输入错误,不能正常输入
请帮忙解决一下,谢谢。
另外,如果能够正常输入,那么输入的数据,能够自动格式化吗?
比如输入99999.99 显示999,99.99 |
|