Spread.Sheets Documentation
EditStarting type
GC.Spread.Sheets.Events Namespace : EditStarting type
Occurs when a cell is entering edit mode.
Example
//This example creates log text for the EditStarting and EditEnded events.
// Use IE to see the console log text
var activeSheet = spread.getActiveSheet();
activeSheet.bind(GC.Spread.Sheets.Events.EditStarting, function (sender, args) {
    console.log("Start cell editing.");
});
activeSheet.bind(GC.Spread.Sheets.Events.EditEnded, function (sender, args) {
    console.log("Finish cell editing.");
});
Inheritance Hierarchy

Object
   GC.Spread.Sheets.Events.EditStarting

See Also

Reference

GC.Spread.Sheets.Events Namespace