var instance; // Type: Events instance.BeforePrint = function(iframe, cancel) { };
パラメータ
- iframe
- 印刷用の Dom。
- cancel
- 印刷をキャンセルするかどうか。
var instance; // Type: Events instance.BeforePrint = function(iframe, 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); }); }