var instance = new GC.Spread.Sheets.Tables.Table(name, row, col, rowCount, colCount, style, options, options.showHeader, options.showFooter, options.useFooterDropDownList, options.showResizeHandle); instance.insertRows(row, count, isInsertAfter);
function insertRows( row : number, count : number, isInsertAfter : boolean ) : void;
Parameters
- row
- The index of the starting row to insert, based on table index.
- count
- The number of rows to add.
- isInsertAfter
- Whether insert rows before the specified row index or after. By default, insert before.