GridControl.EndSorting Event
In This Article
Occurs after a sorting operation has been completed.
Namespace: DevExpress.WinUI.Grid
Assembly: DevExpress.WinUI.Grid.v23.2.dll
NuGet Package: DevExpress.WinUI
#Declaration
public event EventHandler EndSorting
#Event Data
The EndSorting event's data class is EventArgs.
#Remarks
When sorting data, the grid does the following:
- Raises the GridControl.StartSorting event.
- Sorts data.
- Raises the
GridControl.EndSorting
event.
See Also