SpreadJS Documentation
newTabVisible Method
Whether the spreadsheet displays the special tab to let users insert new sheets.
Gets or sets whether the spreadsheet displays a special tab that allows users to insert new sheets.
Syntax
var instance = new GcSpread.Sheets.Spread(host, options);
var returnValue; // Type: Object
returnValue = instance.newTabVisible(value);
function newTabVisible( 
   value : boolean
) : Object;

Parameters

value
Whether the spreadsheet displays the special tab to let users insert new sheets.

Return Value

true if the control displays a special tab that allows users to insert new sheets; otherwise, false.
Example
This example sets up the spreadsheet's tabs and tab strip.
spread.tabStripVisible(true);
spread.tabEditable(true);
spread.newTabVisible(true);
spread.setTabStripRatio(1,true);
Remarks
The default value is true.
See Also

Reference

Spread type

 

 


Copyright © GrapeCity, inc. All rights reserved.

Send comments on this topic.