ColumnView.EndGrouping Event
Fires after the grouping operation has been completed.
Namespace: DevExpress.XtraGrid.Views.Base
Assembly: DevExpress.XtraGrid.v24.1.dll
NuGet Packages: DevExpress.Win.Grid, DevExpress.Win.Navigation
Declaration
Event Data
The EndGrouping event's data class is EventArgs.
Remarks
When you group View data by column values, the View does the following:
- generates the ColumnView.StartGrouping event;
- groups data;
- generates the EndGrouping event.
Note that when data is grouped, it is sorted as well. Thus, the ColumnView.StartSorting and ColumnView.EndSorting events are also raised before and after grouping.
See the Grouping document for more information.
See Also