GcSpread.Sheets Namespace > Events type : LeaveCell Event |
var instance; // Type: Events instance.LeaveCell = function(sheet, sheetName, row, col, cancel) { };
// Use IE to see the console log text activeSheet.bind(GcSpread.Sheets.Events.LeaveCell, function (sender, args) { console.log("The column index before moving: " + args.col); console.log("The row index before moving: " + args.row); });