Spread.Sheets Documentation
setSheetCount Method
The number of sheets.
Sets the number of sheets.
Syntax
var instance = new GC.Spread.Sheets.Workbook(host);
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).options.sheetTabColor = "red";
spread.getSheet(1).options.sheetTabColor = "#FFFF00";
spread.getSheet(2).options.sheetTabColor = "Accent 4";
This example sets the spreadsheet to have five sheets.
spread.setSheetCount(5);
See Also

Reference

Workbook type

 

 


Copyright © GrapeCity, inc. All rights reserved.

Send comments on this topic.