[]
Sheets.CellTypes.CheckBoxTextAlign
チェックボックス型セルのテキストの配置を指定します。
実例
// 次のサンプルコードは、チェックボックス型セルを作成します。
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
テキストがチェックボックスの下にあることを指定します。
• left = 2
テキストがチェックボックスの左にあることを指定します。
• right = 3
テキストがチェックボックスの右にあることを指定します。
• top = 0
テキストをチェックボックスの上に配置します。