Spread.Sheets Documentation
CellChanged type
GC.Spread.Sheets.Events Namespace : CellChanged type
Occurs when a change is made to a cell in this sheet that may require the cell to be repainted.
Example
//This example uses the CellChanged event.
activeSheet.bind(GC.Spread.Sheets.Events.CellChanged, function (e, info) {
    if(info.sheetArea === GC.Spread.Sheets.SheetArea.viewport){
        alert("Cell index (" + info.row + "," + info.col + ")");
    }
});
Inheritance Hierarchy

Object
   GC.Spread.Sheets.Events.CellChanged

See Also

Reference

GC.Spread.Sheets.Events Namespace