SpreadJS Documentation
addRows Method
The index of the starting row.
The number of rows to add.
Adds rows in this sheet.
Syntax
var instance = new GcSpread.Sheets.Sheet(name);
var value; // Type: any
value = instance.addRows(row, count);
function addRows( 
   row : number,
   count : number
) : any;

Parameters

row
The index of the starting row.
count
The number of rows to add.
Example
This example adds rows.
sheet.setValue(0, 0, "value");
sheet.addRows(0, 2);
sheet.addColumns(0, 2);
sheet.setRowHeight(0, 50.0,GcSpread.Sheets.SheetArea.viewport);
sheet.setColumnWidth(0, 150.0,GcSpread.Sheets.SheetArea.viewport);
sheet.getRow(0).backColor("Gray");
sheet.getColumn(0).backColor ("Brown");
See Also

Reference

Sheet type

 

 


Copyright © GrapeCity, inc. All rights reserved.

Send comments on this topic.