GcSpread.Sheets Namespace > CheckBoxCellType class : textTrue Method |
true
.
true
.var instance = new GcSpread.Sheets.CheckBoxCellType(); var returnValue; // Type: string returnValue = instance.textTrue(value);
function textTrue( value : string ) : string;
true
.true
.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);