| Visual Basic (Declaration) | |
|---|---|
Public Overloads Overridable Sub MoveRow( _ ByVal fromIndex As Integer, _ ByVal toIndex As Integer, _ ByVal moveContent As Boolean _ ) | |
| Visual Basic (Usage) | Copy Code |
|---|---|
| |
Parameters
- fromIndex
- Current index of the row to move
- toIndex
- New index of the row after the move
- moveContent
- Whether to move content
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) | |