大神:
您好,我在Farpoint6.0为单元格设置千分位。在页面第一次加载的时候是千分位。当我双击单元格编辑数字之后就不是千分位了,求解决方案。我的代码如下:
FarPoint.Web.Spread.IntegerCellType g = new FarPoint.Web.Spread.IntegerCellType();
System.Globalization.NumberFormatInfo nfi = new System.Globalization.NumberFormatInfo();
nfi.NumberDecimalDigits = 3;
nfi.NumberDecimalSeparator = ",";
nfi.NumberDecimalDigits = 0;
g.NumberFormat = nfi;
fp_ProjectPlanIndex.ActiveSheetView.Cells[7, 1, 7, 9].CellType = g;
ps:控件中有公式。 |
|