Action
Moves the rows with an index greater than or equal to fromRow up to an index less than or equal to toRow to the position of
destRow.
Syntax
C#
gridView.MoveRows(fromRow, toRow, destRow)
VB
gridView.MoveRows(fromRow, toRow, destRow)
Variable |
Description |
fromRow |
Index of the first row of the selection. The value is zero-based. Integer.
|
toRow |
Index of the last row of the selection. The value is zero-based. Integer.
|
destRow |
Index of the destination to which the rows should be moved. The value is zero-based. Integer.
|