ComponentOne FlexGrid for WinForms
DraggingRow Event

C1.Win.C1FlexGrid Namespace > C1FlexGridBase Class : DraggingRow Event
Fires as the user drags a row to a new position.
Syntax
'Declaration
 
Public Event DraggingRow As DragRowColEventHandler
public event DragRowColEventHandler DraggingRow
Event Data

The event handler receives an argument of type DragRowColEventArgs containing data related to this event. The following DragRowColEventArgs properties provide information specific to this event.

PropertyDescription
Gets or sets a value indicating whether the drag operation should be canceled.  
Gets the original index of the column that was dragged by the user.  
Gets the new index of the column or row that was dragged by the user.  
Gets the original index of the row that was dragged by the user.  
Remarks

This event only fires when the user drags a row using the mouse.

It does not fire when a row is moved using the RowCollection.Move method.

You can prevent specific rows from being dragged by the user by setting their RowCol.AllowDragging property to false.

See Also