Spread Windows Forms 11.0 Product Documentation
MoveRows Method
Example 


FarPoint.Win.Spread Assembly > FarPoint.Win.Spread.Model Namespace > DefaultSheetSpanModel Class : MoveRows Method
Row index at which to start the move
Row index at which to paste rows
Number of rows to move
Moves rows and pastes them at the specified location.
Syntax
'Declaration
 
Public Sub MoveRows( _
   ByVal fromRow As Integer, _
   ByVal toRow As Integer, _
   ByVal count As Integer _
) 
'Usage
 
Dim instance As DefaultSheetSpanModel
Dim fromRow As Integer
Dim toRow As Integer
Dim count As Integer
 
instance.MoveRows(fromRow, toRow, count)
public void MoveRows( 
   int fromRow,
   int toRow,
   int count
)

Parameters

fromRow
Row index at which to start the move
toRow
Row index at which to paste rows
count
Number of rows to move
Example
This example moves the spans rows and pastes them at the specified location.
FarPoint.Win.Spread.Model.DefaultSheetSpanModel defspanModel = new FarPoint.Win.Spread.Model.DefaultSheetSpanModel();
fpSpread1.ActiveSheet.Models.Span = defspanModel;
defspanModel.Add(0, 0, 2, 2);
defspanModel.MoveRows(0, 4, 2);
Dim defspanModel As New FarPoint.Win.Spread.Model.DefaultSheetSpanModel()
FpSpread1.ActiveSheet.Models.Span = defspanModel
defspanModel.Add(0, 0, 2, 2)
defspanModel.MoveRows(0, 4, 2)
See Also

Reference

DefaultSheetSpanModel Class
DefaultSheetSpanModel Members