Spread.Sheets > サンプルコード > 範囲グループのサンプルコード > アウトラインの追加と削除 |
範囲グループにアウトラインを追加または削除できます。
次のサンプルコードは、アウトラインを追加および削除します。
JavaScript |
コードのコピー
|
---|---|
$("#button1").click(function () { var activeSheet = spread.getActiveSheet(); activeSheet.suspendPaint(); // 行のアウトラインを設定します。 activeSheet.rowOutlines.group(0, 4); activeSheet.rowOutlines.group(0, 1); activeSheet.rowOutlines.group(2, 1); // 列のアウトラインを設定します。 activeSheet.columnOutlines.group(0, 4); activeSheet.columnOutlines.group(0, 1); activeSheet.columnOutlines.group(2, 1); activeSheet.resumePaint(); }); $("#button2").click(function(){ var activeSheet = spread.getActiveSheet(); activeSheet.suspendPaint(); // 行のアウトラインを削除します。 activeSheet.rowOutlines.ungroupRange(0, 4); activeSheet.rowOutlines.ungroupRange(0, 1); activeSheet.rowOutlines.ungroupRange(2, 1); // 列のアウトラインを削除します。 activeSheet.columnOutlines.ungroupRange(0, 4); activeSheet.columnOutlines.ungroupRange(0, 1); activeSheet.columnOutlines.ungroupRange(2, 1); activeSheet.resumePaint(); }); |