var instance; // Type: Events instance.EditStarting = function(sheet, sheetName, row, col, cancel) { };
パラメータ
- sheet
- イベントを発生させたシート。
- sheetName
- シートの名前。
- row
- セルの行インデックス。
- col
- セルの列インデックス。
- cancel
- 操作をキャンセルするかどうかを示す値。
var instance; // Type: Events instance.EditStarting = function(sheet, sheetName, row, col, cancel) { };
// Use IE to see the console log text var activeSheet = spread.getActiveSheet(); activeSheet.bind(GC.Spread.Sheets.Events.EditStarting, function (sender, args) { console.log("Start cell editing."); }); activeSheet.bind(GC.Spread.Sheets.Events.EditEnded, function (sender, args) { console.log("Finish cell editing."); });