问题出处:
Spread for ASP.NET 表格控件 V7.0 使用指南
1.3设置单元格类型
示例:设置数字单元格类型到Check #列
[C#] // 把Check #列的单元格类型设置成数字
FarPoint.Web.Spread.CheckBoxCellType objIntCell = new FarPoint.Web.Spread.IntegerCellType();
FpSpread1.Sheets[0].Columns[0].CellType = objIntCell;
问题描述:
示例中是要把单元格Check #列的类型设置成数字,但是前面却写的是CheckBoxCellType,而后面又变成了IntegerCellType
|