SpreadJS Documentation
getRowVisible Method
The row index.
The sheet area. If this parameter is not given, it defaults to viewport.
Gets whether the control displays the specified row.
Syntax
var instance = new GcSpread.Sheets.Sheet(name);
var value; // Type: boolean
value = instance.getRowVisible(row, sheetArea);
function getRowVisible( 
   row : number,
   sheetArea : SheetArea
) : boolean;

Parameters

row
The row index.
sheetArea
The sheet area. If this parameter is not given, it defaults to viewport.

Return Value

true if the row is visible in the sheet area; otherwise, false.
Example
This example returns the visible setting for the specified row.
rvisible = activeSheet.getRowVisible(1,GcSpread.Sheets.SheetArea.viewport);
alert(rvisible);
See Also

Reference

Sheet type

 

 


Copyright © GrapeCity, inc. All rights reserved.

Send comments on this topic.