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