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