SpreadJS製品ヘルプ
PrintVisibilityType 列挙体
GC.Spread.Sheets.Print 名前空間 : PrintVisibilityType 列挙体
領域が表示されるかどうかを指定します。
メンバ
メンバ解説
hide領域を非表示にします。
inheritWorksheetクラスの設定を継承します。
show各ページに表示します。
showOnce一度だけ表示します。
使用例
次のサンプルコードは、シートの印刷時に列ヘッダを非表示にします。
activeSheet.setRowCount(5, GC.Spread.Sheets.SheetArea.viewport);
activeSheet.setColumnCount(5, GC.Spread.Sheets.SheetArea.viewport);

activeSheet.suspendPaint();
            //set value
            for (var r = 0, rc = activeSheet.getRowCount(); r < rc; r++) {
                for (var c = 0, cc = activeSheet.getColumnCount(); c < cc; c++) {
                    activeSheet.setValue(r, c, r + c);
                }
            }
activeSheet.resumePaint();

$("#button1").click(function () {
var printInfo = new GC.Spread.Sheets.Print.PrintInfo();
printInfo.showColumnHeader(GC.Spread.Sheets.Print.PrintVisibilityType.hide);
spread.print(0);
   });
継承階層

Object
   GC.Spread.Sheets.Print.PrintVisibilityType

関連トピック

参照

GC.Spread.Sheets.Print 名前空間