FarPoint.Win.Spread
MoveRow Method
See Also  Example
FarPoint.Win.Spread Assembly > FarPoint.Win.Spread Namespace > SheetView Class : MoveRow Method


Overload List

OverloadDescription
MoveRow(Int32,Int32,Int32,Boolean) Moves the specified row from its current index to the specified index, and shifts each column in between and the destination column one column in the direction of the specified column.  
MoveRow(Int32,Int32,Boolean) 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.  

Example

This example moves the row from its current index to the specified index.
C#Copy Code
fpSpread1.ActiveSheet.MoveRow(0, 2, true);
Visual BasicCopy Code
FpSpread1.ActiveSheet.MoveRow(0, 2, True)

Remarks

If the moveContent option is false then cell spans are invisible If the moveContent option is true then cell spans are moved.

See Also