对于DoubleCellType和IntergerCellType,您在设置了FormatString后,还需要设置NumberFormat属性。
- DoubleCellType doubleCellType = new DoubleCellType();
- doubleCellType.FormatString = "#,###.##";
-
- // 创建并设置NumberFormat。
- NumberFormatInfo numberFormatInfo = new System.Globalization.NumberFormatInfo();
- numberFormatInfo.CurrencyGroupSeparator = ",";
- doubleCellType.NumberFormat = numberFormatInfo;
-
- // 将CellType应用到Cell上。
- FpSpread1.ActiveSheetView.Cells[0, 0].CellType = doubleCellType;
- // 为该Cell设值。
- this.FpSpread1.ActiveSheetView.Cells[0, 0].Value = 123456.98;
复制代码 |