Spread.Sheets Documentation
LeaveCell type
GC.Spread.Sheets.Events Namespace : LeaveCell type
Occurs when the focus leaves a cell.
Example
//This example creates log text for the LeaveCell event.
// 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);
});
Inheritance Hierarchy

Object
   GC.Spread.Sheets.Events.LeaveCell

See Also

Reference

GC.Spread.Sheets.Events Namespace