TreeListView.EndSelection() Method
OBSOLETE
Use the EndSelection() method instead
Enables selection updates after calling the TreeListView.BeginSelection method, and forces an immediate update.
Namespace: DevExpress.Xpf.Grid
Assembly: DevExpress.Xpf.Grid.v24.1.dll
NuGet Package: DevExpress.Wpf.Grid.Core
Declaration
[Obsolete("Use the DataControlBase.EndSelection method instead")]
[Browsable(false)]
public void EndSelection()
Remarks
TreeListView allows a sequence of node selection operations to be performed without having the TreeListView render itself after each modification. To do this, the code performing sequential changes must be enclosed within calls to the TreeListView.BeginSelection and EndSelection methods. This improves performance, and avoids unnecessary rendering operations.
See Also