GcSpread.Sheets Namespace > Sheet type : visible Method |
var instance = new GcSpread.Sheets.Sheet(name); var returnValue; // Type: Object returnValue = instance.visible(value);
function visible( value : boolean ) : Object;
activeSheet.visible(false);
//Create a spread instance on DIV element which id is 'spreadContainer' var spread = new GcSpread.Sheets.Spread($("#spreadContainer").get(0),{sheetCount:3}); spread.sheets[1].visible(false);
The default value is true.
If you hide an active sheet, the next sheet becomes active.