Skip to main content

DevExpress v24.2 Update — Your Feedback Matters

Our What's New in v24.2 webpage includes product-specific surveys. Your response to our survey questions will help us measure product satisfaction for features released in this major update and help us refine our plans for our next major release.

Take the survey Not interested

TreeListView.BeginSelection() Method

In This Article
OBSOLETE

Use the BeginSelection() method instead

Prevents selection updates until the TreeListView.EndSelection method is called.

Namespace: DevExpress.Xpf.Grid

Assembly: DevExpress.Xpf.Grid.v24.2.dll

NuGet Package: DevExpress.Wpf.Grid.Core

#Declaration

[Obsolete("Use the DataControlBase.BeginSelection method instead")]
[Browsable(false)]
public void BeginSelection()

#Remarks

A 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 TreeListView.EndSelection methods. This improves performance, and avoids unnecessary rendering operations.

See Also