Spread.Sheets
margin メソッド
印刷の余白。
印刷の余白(1/100インチ単位)を取得または設定します。
シンタックス
Javascript (Usage) 
var instance = new GC.Spread.Sheets.Print.PrintInfo();
var returnValue; // Type: any
returnValue = instance.margin(value);
Javascript (Specification) 
function margin( 
   value : Object
) : 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.headerLeft("Header Left");
printInfo.headerCenter("Header Center");
printInfo.headerRight("Header Right");
printInfo.footerLeft("Footer Left");
printInfo.footerCenter("Footer Center");
printInfo.footerRight("Footer Right");
printInfo.margin({top:75, bottom:75, left:20, right:20, header:10, footer:20});
activeSheet.printInfo(printInfo);
spread.print(0);
   });
解説
value.top {number} top 上余白(1/100インチ単位)。
value.bottom {number} bottom 下余白(1/100インチ単位)。
value.left {number} left 左余白(1/100インチ単位)。
value.right {number} right 右余白(1/100インチ単位)。
value.header {number} header ヘッダオフセット(1/100インチ単位)。
value.footer {number} footer フッタオフセット(1/100インチ単位)。

関連トピック

参照

PrintInfo タイプ

 

 


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