'DeclarationPublic Event GroupChanging As EventHandler(Of DataGridGroupChangingEventArgs)
public event EventHandler<DataGridGroupChangingEventArgs> GroupChanging
Event Data
The event handler receives an argument of type DataGridGroupChangingEventArgs containing data related to this event. The following DataGridGroupChangingEventArgs properties provide information specific to this event.
| Property | Description |
|---|---|
| Cancel | (Inherited from System.ComponentModel.CancelEventArgs) |
| ChangingColumns | Gets the columns will be grouped if this event is not cancelled. |
Remarks
Grouping state changes when user drag a column on the grouping panel or when the GroupBy method is called.
See Also