SpreadJS Documentation
setRowCount Method
The row count.
The sheet area. If this parameter is not given, it defaults to viewport.
Sets the row count in the specified sheet area.
Syntax
var instance = new GcSpread.Sheets.Sheet(name);
var value; // Type: any
value = instance.setRowCount(rowCount, sheetArea);
function setRowCount( 
   rowCount : number,
   sheetArea : SheetArea
) : any;

Parameters

rowCount
The row count.
sheetArea
The sheet area. If this parameter is not given, it defaults to viewport.
Example
This example sets the row count.
sheet.setRowCount(4,1);
sheet.setColumnCount(4,2);
sheet.addSpan(0,0,3,3,GcSpread.Sheets.SheetArea.colHeader);
sheet.addSpan(0,0,3,3,GcSpread.Sheets.SheetArea.rowHeader);
sheet.addSpan(0,0,3,3,GcSpread.Sheets.SheetArea.viewport);
See Also

Reference

Sheet type

 

 


Copyright © GrapeCity, inc. All rights reserved.

Send comments on this topic.