Spread.Sheets Documentation
EditChange type
GC.Spread.Sheets.Events Namespace : EditChange type
Occurs when a cell is in edit mode and the text is changed.
Example
//This example creates log text for the EditChange event.
// Use IE to see the console log text
activeSheet.bind(GC.Spread.Sheets.Events.EditChange, function (sender, args) {
    console.log("Cell (" + args.row + ", " + args.col + ") data has been changed.")
});
Inheritance Hierarchy

Object
   GC.Spread.Sheets.Events.EditChange

See Also

Reference

GC.Spread.Sheets.Events Namespace