SpreadJS Documentation
CheckBoxCellType Constructor
Represents a check box cell.
Syntax
var instance = new GcSpread.Sheets.CheckBoxCellType();
function CheckBoxCellType() : CheckBoxCellType;
Example
This example creates a checkbox cell.
var cellType1 = new GcSpread.Sheets.CheckBoxCellType();
cellType1.caption("caption");
cellType1.textTrue("true");
cellType1.textFalse("false");
cellType1.textIndeterminate("indeterminate");
cellType1.textAlign(GcSpread.Sheets.CheckBoxTextAlign.bottom);
cellType1.isThreeState(true);
activeSheet.getCell(1, 1).cellType(cellType1);
See Also

Reference

CheckBoxCellType class

 

 


Copyright © GrapeCity, inc. All rights reserved.

Send comments on this topic.