Skip to main content

DataControlBase.BeginSelection() Method

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

Namespace: DevExpress.UI.Xaml.Grid

Assembly: DevExpress.UI.Xaml.Grid.v21.2.dll

NuGet Package: DevExpress.Uwp.Controls

Declaration

public void BeginSelection()

Remarks

A grid allows a sequence of row selection operations to be performed without having the grid render itself after each modification. To do this, the code performing sequential changes must be enclosed within calls to the BeginSelection and DataControlBase.EndSelection methods. This improves performance, and avoids unnecessary rendering operations.

See Also