var instance; // Type: Events instance.LeaveCell = function(sheet, sheetName, row, col, cancel) { };
パラメータ
- sheet
- イベントを発生させたシート。
- sheetName
- シートの名前。
- row
- フォーカスが離れるセルの行インデックス。
- col
- フォーカスが離れるセルの列インデックス。
- cancel
- 操作をキャンセルするかどうか。
var instance; // Type: Events instance.LeaveCell = function(sheet, sheetName, row, col, cancel) { };
// Use IE to see the console log text activeSheet.bind(GC.Spread.Sheets.Events.LeaveCell, function (sender, args) { console.log("The column index before moving: " + args.col); console.log("The row index before moving: " + args.row); });