Spread.Sheets Documentation
RowChanged Event
GC.Spread.Sheets Namespace > Events type : RowChanged Event
The sheet that triggered the event.
The sheet's name.
The row index.
The sheetArea of the row.
The name of the row's property that has changed.
Occurs when a change is made to a row or range of rows in this sheet that may require the row or range of rows to be repainted.
Syntax
var instance; // Type: Events
instance.RowChanged = function(sheet, sheetName, row, sheetArea, propertyName) { };
RowChanged = function ( 
   sheet : Worksheet,
   sheetName : string,
   row : number,
   sheetArea : SheetArea,
   propertyName : string
) { };

Parameters

sheet
The sheet that triggered the event.
sheetName
The sheet's name.
row
The row index.
sheetArea
The sheetArea of the row.
propertyName
The name of the row's property that has changed.
Example
This example uses the RowChanged event.
activeSheet.bind(GC.Spread.Sheets.Events.RowChanged, function (e, info) {    
        alert("Row (" + info.row + ")");
});
See Also

Reference

Events type