SpreadJS製品ヘルプ
BeforePrint イベント
GC.Spread.Sheets 名前空間 > Events タイプ : BeforePrint イベント
印刷用の Dom。
印刷をキャンセルするかどうか。
印刷の前に発生します。
シンタックス
var instance; // Type: Events
instance.BeforePrint = function(iframe, cancel) { };
BeforePrint = function ( 
   iframe : Object,
   cancel : booble
) { };

パラメータ

iframe
印刷用の Dom。
cancel
印刷をキャンセルするかどうか。
使用例
//次のサンプルコードは、BeforePrintを使用します。
window.onload = function(){
     var spread = new GC.Spread.Sheets.Workbook(document.getElementById("ss"),{sheetCount:3});
     spread.bind(GC.Spread.Sheets.Events.BeforePrint, function (e, data) {
         alert(data.iframe + '\n' + 'cancel: ' + data.cancel);
     });
}
関連トピック

参照

Events タイプ