var instance; // Type: Events instance.SheetNameChanging = function(sheet, oldValue, newValue, cancel) { };
パラメータ
- sheet
- イベントを発生させたシート。
- oldValue
- シートの古い名前。
- newValue
- シートの新しい名前。
- cancel
- 操作をキャンセルするかどうかを示す値。
var instance; // Type: Events instance.SheetNameChanging = function(sheet, oldValue, newValue, cancel) { };
// Use IE to see the console log text spread.bind(GC.Spread.Sheets.Events.SheetNameChanging, function (sender, args) { console.log(args.oldValue); }); spread.bind(GC.Spread.Sheets.Events.SheetNameChanged, function (sender, args) { console.log(args.newValue); });