Swaps a range of rows with another range of rows.
Syntax
'Declaration
Public Sub SwapRows( _
ByVal As System.Integer, _
ByVal As System.Integer, _
ByVal As System.Integer _
)
'Usage
Dim instance As SheetSpanModel
Dim fromRow As System.Integer
Dim toRow As System.Integer
Dim count As System.Integer
instance.SwapRows(fromRow, toRow, count)
public void SwapRows(
System.int ,
System.int ,
System.int
)
Parameters
- fromRow
- The row index at which to start the swap.
- toRow
- The row index at which to swap rows.
- count
- The number of rows to swap.
See Also