GC.Spread.Sheets Namespace > Events type : CellChanged Event |
var instance; // Type: Events instance.CellChanged = function(sheet, sheetName, row, col, sheetArea, propertyName) { };
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 + ")"); } });