GC.Spread.Sheets 名前空間 > Events タイプ : LeaveCell イベント |
Javascript (Usage) | |
---|---|
var instance; // Type: Events instance.LeaveCell = function(sheet, sheetName, row, col, cancel) { }; |
Javascript (Specification) | |
---|---|
LeaveCell = function ( sheet : Worksheet, sheetName : string, row : number, col : number, cancel : boolean ) { }; |
// 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); });