SpreadJS製品ヘルプ
expand メソッド
GC.Spread.Sheets.Outlines 名前空間 > Outline タイプ : expand メソッド
展開または折りたたむアウトラインのレベル。
グループを展開するかどうか。
指定したレベルを使用してすべてのアウトライン(範囲グループ)を展開します。
シンタックス
var instance = new GC.Spread.Sheets.Outlines.Outline(count);
var value; // Type: any
value = instance.expand(level, expand);
function expand( 
   level : number,
   expand : boolean
) : any;

パラメータ

level
展開または折りたたむアウトラインのレベル。
expand
グループを展開するかどうか。
使用例
次のサンプルコードは、expandメソッドを使用します。
activeSheet.suspendPaint();
activeSheet.rowOutlines.group(0,5);
activeSheet.rowOutlines.expand(0,false);
activeSheet.resumePaint();
関連トピック

参照

Outline タイプ