SpreadJS製品ヘルプ
getMaxLevel メソッド
GC.Spread.Sheets.Outlines 名前空間 > Outline タイプ : getMaxLevel メソッド
最も深いレベルのレベル数を取得します。
シンタックス
var instance = new GC.Spread.Sheets.Outlines.Outline(count);
var value; // Type: number
value = instance.getMaxLevel();
function getMaxLevel() : number;

戻り値の型

最も深いレベルのレベル数。
使用例
次のサンプルコードは、getMaxLevelメソッドを使用します。
activeSheet.suspendPaint();
activeSheet.rowOutlines.group(0,5);
activeSheet.rowOutlines.group(1,4);
activeSheet.rowOutlines.expand(0,true);
activeSheet.columnOutlines.group(0,1);
activeSheet.resumePaint();
alert(activeSheet.rowOutlines.getMaxLevel());
activeSheet.suspendPaint();
activeSheet.rowOutlines.group(0,5);
activeSheet.rowOutlines.group(1,4);
activeSheet.rowOutlines.expand(0,true);
activeSheet.columnOutlines.group(0,1);
activeSheet.resumePaint();
alert(activeSheet.rowOutlines.getMaxLevel());
解説
レベルインデックスは0から始まります。
関連トピック

参照

Outline タイプ