SpreadJS製品ヘルプ
expandBoundRows メソッド
GC.Spread.Sheets.Tables 名前空間 > Table タイプ : expandBoundRows メソッド
行を挿入/削除してシートまたはテーブルを展開するかどうか。
バインディングのモードの場合にテーブルが行を展開する値を取得または設定します。
シンタックス
var instance = new GC.Spread.Sheets.Tables.Table(name,
                                                row,
                                                col,
                                                rowCount,
                                                colCount,
                                                style,
                                                options,
                                                options.showHeader,
                                                options.showFooter,
                                                options.useFooterDropDownList,
                                                options.showResizeHandle);
var returnValue; // Type: any
returnValue = instance.expandBoundRows(value);
function expandBoundRows( 
   value : boolean
) : any;

パラメータ

value
行を挿入/削除してシートまたはテーブルを展開するかどうか。

戻り値の型

値が設定されていない場合は、シートまたはテーブルの挿入/削除行で展開するかどうかを返します。 それ以外の場合は、テーブルを返します。
使用例
spread.fromJSON(template);
spread.getActiveSheet().tables.all().forEach((table)=>{
   table.expandBoundRows(true);
});
spread.getActiveSheet().setDataSource(new GC.Spread.Sheets.Bindings.CellBindingSource(datas));
関連トピック

参照

Table タイプ