Spread.Sheets
orientation メソッド
印刷に使用するページの向き。
印刷に使用するページの向きを取得または設定します。
シンタックス
Javascript (Usage) 
var instance = new GC.Spread.Sheets.Print.PrintInfo();
var returnValue; // Type: any
returnValue = instance.orientation(value);
Javascript (Specification) 
function orientation( 
   value : PrintPageOrientation
) : any;

パラメータ

value
印刷に使用するページの向き。

戻り値の型

値が設定されていない場合は、印刷に使用するページの向きを返します。値が設定されている場合は、印刷設定情報を返します。
使用例
次のサンプルコードは、シートを印刷します。
activeSheet.setRowCount(3, GC.Spread.Sheets.SheetArea.viewport);
activeSheet.setColumnCount(3, 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.bestFitColumns(true);
printInfo.orientation(GC.Spread.Sheets.Print.PrintPageOrientation.landscape);
printInfo.footerCenter("GrapeCity");
activeSheet.printInfo(printInfo);
spread.print(0);
   });

関連トピック

参照

PrintInfo タイプ

 

 


© 2016-2018, GrapeCity inc. All rights reserved.