Spread.Sheets Documentation
RowHeightChanged Event
The sheet that triggered the event.
The sheet's name.
The list of rows whose heights have changed.
Whether the columns are column header columns.
Occurs when the row height has changed.
Syntax
var instance; // Type: Events
instance.RowHeightChanged = function(sheet, sheetName, rowList, header) { };
RowHeightChanged = function ( 
   sheet : Worksheet,
   sheetName : string,
   rowList : Array,
   header : boolean
) { };

Parameters

sheet
The sheet that triggered the event.
sheetName
The sheet's name.
rowList
The list of rows whose heights have changed.
header
Whether the columns are column header columns.
Example
This example uses the RowHeightChanged event.
activeSheet.bind(GC.Spread.Sheets.Events.RowHeightChanged, function (e, info) {    
        alert("Row List (" + info.rowList + ")");
});
See Also

Reference

Events type

 

 


Copyright © GrapeCity, inc. All rights reserved.

Send comments on this topic.