SpreadJS Documentation
setSheetCount Method
The number of sheets.
Sets the number of sheets.
Syntax
var instance = new GcSpread.Sheets.Spread(host, options);
var value; // Type: any
value = instance.setSheetCount(count);
function setSheetCount( 
   count : number
) : any;

Parameters

count
The number of sheets.
Example
This example puts three sheets in a spreadsheet, specifies the first sheet to display, and sets the tab color for the sheets.
spread.setSheetCount(3);
spread.startSheetIndex(0);
spread.getSheet(0).sheetTabColor("red");
spread.getSheet(1).sheetTabColor("#FFFF00");
spread.getSheet(2).sheetTabColor("Accent 4");
This example sets the spreadsheet to have five sheets.
spread.setSheetCount(5);
See Also

Reference

Spread type

 

 


Copyright © GrapeCity, inc. All rights reserved.

Send comments on this topic.