TableEditor.insertColumn method
TableEditor › insertColumn
Unofficial
Insert a column into the table.Signature:
insertColumn(focusRow: number, index: number, alignment: TableAlignment, copyFromCol?: boolean | undefined): voidParameters:
| Parameter | Type | Description |
|---|---|---|
| focusRow | number | Row to focus after insertion. |
| index | number | Column index at which to insert. |
| alignment | TableAlignment | Alignment for the new column. |
| copyFromCol? | boolean | undefined | Whether to copy the width of the column currently at index. |
Returns: void