SpreadJS製品ヘルプ
maxRowCount メソッド
GC.Spread.Sheets.CellTypes 名前空間 > CheckBoxList タイプ : maxRowCount メソッド
チェックボックスリストの行数。
チェックボックスリストの行数の項目を取得または設定します。
シンタックス
var instance = new GC.Spread.Sheets.CellTypes.CheckBoxList();
var returnValue; // Type: any
returnValue = instance.maxRowCount(value);
function maxRowCount( 
   value : number
) : any;

パラメータ

value
チェックボックスリストの行数。

戻り値の型

値が設定されていない場合は、行数を返します。値が設定されている場合は、チェックボックスのcellTypeを返します。
使用例
//次のサンプルコードは、チェックボックスリスト型セルを作成します。
var cellType2 = new GC.Spread.Sheets.CellTypes.CheckBoxList();
cellType2.items([{text:"a",value:1},{text:"b",value:2},{text:"c",value:3}]);
cellType2.maxRowCount(2);
activeSheet.getCell(2, 2).cellType(cellType2);
関連トピック

参照

CheckBoxList タイプ