您好
1、您可以用以下代码判断指定单元格的类型是否为CheckBox
- sheet.getCellType(1,2) instanceof GC.Spread.Sheets.CellTypes.CheckBox
复制代码
这个是CheckBox的API
https://demo.grapecity.com.cn/sp ... Types.CheckBox.html
2、获取勾选的值并存储起来
- sheet.getCellType(1,2).textTrue();
复制代码
3、为单元格设置文本类型
- var t = new GC.Spread.Sheets.CellTypes.Text();
- sheet.setCellType(1, 2, t, GC.Spread.Sheets.SheetArea.viewport);
复制代码
这是Text的API
https://demo.grapecity.com.cn/sp ... CellTypes.Text.html
4、将存储的值用setValue传入即可完成转换
|