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

Parameters

row
The row index.
value
Set to true to display the specified row.
sheetArea
The sheet area. If this parameter is not given, it defaults to viewport.
Example
This example sets the specified row to be hidden.
activeSheet.setRowVisible(1,false,GcSpread.Sheets.SheetArea.viewport);
See Also

Reference

Sheet type

 

 


Copyright © GrapeCity, inc. All rights reserved.

Send comments on this topic.