Moves the specified row from its current index to the specified index, and shifts each row in between and the destination row one row in the direction of the specified row.
Syntax
Visual Basic (Usage) | Copy Code |
---|
Dim instance As SheetView
Dim fromIndex As Integer
Dim toIndex As Integer
Dim moveContent As Boolean
instance.MoveRow(fromIndex, toIndex, moveContent) |
Parameters
- fromIndex
- Current index of the row to move
- toIndex
- New index of the row after the move
- moveContent
- Whether to move content
Example
This example moves a row.
C# | Copy Code |
---|
fpSpread1.Sheets[0].MoveRow(0,5,true); |
Visual Basic | Copy Code |
---|
FpSpread1.Sheets(0).MoveRow(0, 5, True) |
Requirements
Target Platforms: Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2
See Also