Spread.Sheets
setSheetCount メソッド
シートの数。
シートの数を設定します。
シンタックス
Javascript (Usage) 
var instance = new GC.Spread.Sheets.Workbook(host);
var value; // Type: any
value = instance.setSheetCount(count);
Javascript (Specification) 
function setSheetCount( 
   count : number
) : any;

パラメータ

count
シートの数。
使用例
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);

関連トピック

参照

Workbook タイプ

 

 


© 2016-2017, GrapeCity inc. All rights reserved.