GridControl.EndGrouping Event
In This Article
Occurs after the grouping operation has been completed.
Namespace: DevExpress.WinUI.Grid
Assembly: DevExpress.WinUI.Grid.v23.2.dll
NuGet Package: DevExpress.WinUI
#Declaration
public event EventHandler EndGrouping
#Event Data
The EndGrouping event's data class is EventArgs.
#Remarks
Each time the grid’s data is grouped or ungrouped by a column, the grid does the following:
- Fires the GridControl.StartGrouping event.
- Performs data grouping.
- Fires the EndGrouping event.
Since data grouping requires sorting, the GridControl.StartSorting and GridControl.EndSorting events are also raised before and after grouping.
See Also