TreeList.EndSorting Event
Fires after a sorting operation has finished.
Namespace: DevExpress.XtraTreeList
Assembly: DevExpress.XtraTreeList.v24.2.dll
Declaration
Event Data
The EndSorting event's data class is EventArgs.
Remarks
When sorting data by the column values the Tree List does the following:
- raises the TreeList.StartSorting event;
- sorts data;
- raises the EndSorting event.
These events can be suppressed while performing sequential sorting operations. Use the TreeList.BeginSort and TreeList.EndSort methods for this purpose.
For more information on sorting, see the Sorting and Sorting via Code documents.
See Also