Spread.Sheets Documentation
visible Method
Set to true to make the row visible.
Gets or sets whether the row or column is displayed.
Syntax
var instance = new GC.Spread.Sheets.CellRange(sheet, row, col, rowCount, colCount, sheetArea);
var returnValue; // Type: any
returnValue = instance.visible(value);
function visible( 
   value : boolean
) : any;

Parameters

value
Set to true to make the row visible.

Return Value

If no value is set, returns the visible of the row or column; otherwise, returns the row or column.
Example
The following examples use the visible method.
activeSheet.getCell(2, -1).visible(false);
activeSheet.getCell(-1, 0).visible(false);
Remarks
The default value is true.
See Also

Reference

CellRange type

 

 


Copyright © GrapeCity, inc. All rights reserved.

Send comments on this topic.