moveColumn
Moves the column from the start index to the destination index.
Supported on:
Signature
moveColumn(fromIndex: number, toIndex: number): void
Parameters
fromIndex
Index of the column to move. Must satisfy 0 <= columnIndex < numColumns
.
toIndex
Index that specifies where the column will be moved before. Must satisfy 0 <= columnIndex < numColumns
.