你好,
你的代码中有几行我不是十分明白应该如何使用,是在循环中使用吗,能否给一个详细一些的代码,谢谢。-
- //不清楚以下代码该如何使用
- sheetView.Cells[iRowIndex, iColumnIndex].CellType = dct;
- if (!string.IsNullOrEmpty(cellText))
- {
- sheetView.Cells[iRowIndex, iColumnIndex].Text = cellText;
- }
复制代码 我将以上代码修改之后没有出现错误提示:- DoubleCellType dct = new DoubleCellType(-99999999999999.00D, 99999999999999.00D, "请输入规范数据!(例:12.34)");
- dct.NumberFormat = new System.Globalization.NumberFormatInfo();
- dct.DecimalDigits = 2;
- dct.FixedPoint = true;
- FpSpread1.ActiveSheetView.Cells[0,0].CellType = dct;
复制代码 运行结果:
1.png
(15.31 KB, 下载次数: 130)
|