Skip to main content
A newer version of this page is available. .

ColumnView.EndGrouping Event

Fires after the grouping operation has been completed.

Namespace: DevExpress.XtraGrid.Views.Base

Assembly: DevExpress.XtraGrid.v18.2.dll

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.

The following code snippet (auto-collected from DevExpress Examples) contains a reference to the EndGrouping event.

Note

The algorithm used to collect these code examples remains a work in progress. Accordingly, the links and snippets below may produce inaccurate results. If you encounter an issue with code examples below, please use the feedback form on this page to report the issue.

See Also