Skip to main content

DevExpress v24.2 Update — Your Feedback Matters

Our What's New in v24.2 webpage includes product-specific surveys. Your response to our survey questions will help us measure product satisfaction for features released in this major update and help us refine our plans for our next major release.

Take the survey Not interested

ColumnView.EndGrouping Event

Fires after the grouping operation has been completed.

Namespace: DevExpress.XtraGrid.Views.Base

Assembly: DevExpress.XtraGrid.v24.2.dll

NuGet Packages: DevExpress.Win.Grid, DevExpress.Win.Navigation

#Declaration

[DXCategory("Sorting")]
public event EventHandler EndGrouping

#Event Data

The EndGrouping event's data class is EventArgs.

#Remarks

When you group View data by column values, the View does the following:

  1. generates the ColumnView.StartGrouping event;
  2. groups data;
  3. 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