'Declaration
Public Event ColumnDragMove As DragMoveEventHandler
'Usage
Dim instance As FpSpread Dim handler As DragMoveEventHandler AddHandler instance.ColumnDragMove, handler
public event DragMoveEventHandler ColumnDragMove
Event Data
The event handler receives an argument of type DragMoveEventArgs containing data related to this event. The following DragMoveEventArgs properties provide information specific to this event.
Property | Description |
---|---|
Cancel | Gets or sets whether to cancel the drag operation. |
Count | Gets the number of columns or rows to move. |
Index | Gets the column or row index of the drag. |
MoveContent | Gets or sets whether the move operation moves the contents of the rows or columns (and rows or columns in between) without changing the index mapping. |
View | Gets the view in which the columns or row are being dragged. |
See Also