'Declaration Public Event ColumnGrouping As C1GridViewColumnGroupEventHandler
public event C1GridViewColumnGroupEventHandler ColumnGrouping
Event Data
The event handler receives an argument of type C1GridViewColumnGroupEventArgs containing data related to this event. The following C1GridViewColumnGroupEventArgs properties provide information specific to this event.
Property | Description |
---|---|
Cancel | (Inherited from System.ComponentModel.CancelEventArgs) |
DestIndex | Index of the new position. |
Drag | Drag source, the C1BaseField object being dragged. |
Drop | Drop target, the C1BaseField object on which drag source is dropped. |
Position | Position to drop relative to drop target. |
Remarks
To cancel the action set the Cancel property of the C1GridViewColumnGroupEventArgs object to true.
See Also