Spread Windows Forms 12.0 Product Documentation
AllowColumnMoveMultiple Property (SpreadView)
Example 


FarPoint.Win.Spread Assembly > FarPoint.Win.Spread Namespace > SpreadView Class : AllowColumnMoveMultiple Property
Gets or sets whether to allow the user to move multiple columns.
Syntax
'Declaration
 
Public Property AllowColumnMoveMultiple As Boolean
'Usage
 
Dim instance As SpreadView
Dim value As Boolean
 
instance.AllowColumnMoveMultiple = value
 
value = instance.AllowColumnMoveMultiple
public bool AllowColumnMoveMultiple {get; set;}
Remarks
Click the column or row header to select it. Select multiple columns or rows by holding down the mouse button and moving over other headers.  After the selection is made, you can click and drag a selected header to start the move.
Example
This example uses the AllowColumnMoveMultiple property.
FarPoint.Win.Spread.SpreadView sv = fpSpread1.GetRootWorkbook();
sv.AllowColumnMove = true;
sv.AllowColumnMoveMultiple = true;
Dim sv As FarPoint.Win.Spread.SpreadView = FpSpread1.GetRootWorkbook
sv.AllowColumnMove = True
sv.AllowColumnMoveMultiple = True
See Also

Reference

SpreadView Class
SpreadView Members