Spread.Sheets
CheckBoxTextAlign 列挙体
チェックボックス型セルのテキストの配置を指定します。
メンバ
メンバ解説
bottomテキストをチェックボックスの下に配置します。
leftテキストをチェックボックスの左に配置します。
rightテキストをチェックボックスの右に配置します。
topテキストをチェックボックスの上に配置します。
使用例
次のサンプルコードは、チェックボックス型セルを作成します。
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);
activeSheet.getCell(1, 1).cellType(cellType1);
継承階層

Object
   GC.Spread.Sheets.CellTypes.CheckBoxTextAlign

関連トピック

参照

GC.Spread.Sheets.CellTypes 名前空間

 

 


© 2016-2017, GrapeCity inc. All rights reserved.