GcSpread.Sheets Namespace : CheckBoxTextAlign Enumeration |
Member | Description |
---|---|
bottom | Specifies text is below the check box. |
left | Specifies text is to the left of the check box. |
right | Specifies text is to the right of the check box. |
top | Specifies text is on top of the check box. |
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);
Object
GcSpread.Sheets.CheckBoxTextAlign