SpreadJS Documentation
visible Method
Set to true to make the row visible.
Gets or set whether the row is displayed.
Syntax
var instance = new GcSpread.Sheets.Row(sheet, index, sheetArea);
var returnValue; // Type: boolean
returnValue = instance.visible(value);
function visible( 
   value : boolean
) : boolean;

Parameters

value
Set to true to make the row visible.

Return Value

true if the row is displayed; otherwise, false.
Example
This example hides the row.
activeSheet.getRow(2).visible(false);
Remarks
The default value is true.
See Also

Reference

Row type

 

 


Copyright © GrapeCity, inc. All rights reserved.

Send comments on this topic.