[]
Sheets.CellTypes.CheckBoxTextAlign
Specifies the text alignment for check box cells.
example
//This example creates a check box cell.
var cellType1 = new GC.Spread.Sheets.CellTypes.CheckBox();
cellType1.caption("caption");
cellType1.textTrue("true");
cellType1.textFalse("false");
cellType1.textIndeterminate("indeterminate");
cellType1.textAlign(GC.Spread.Sheets.CellTypes.CheckBoxTextAlign.bottom);
cellType1.isThreeState(true);
cellType1.boxSize(20);
activeSheet.getCell(1, 1).cellType(cellType1);
• bottom = 1
Specifies text is below the check box.
• left = 2
Specifies text is to the left of the check box.
• right = 3
Specifies text is to the right of the check box.
• top = 0
Specifies text is on top of the check box.