Skip to main content

ColumnView.EndGrouping Event

Fires after the grouping operation has been completed.

Namespace: DevExpress.XtraGrid.Views.Base

Assembly: DevExpress.XtraGrid.v23.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