Skip to main content

GridViewBase.ClearSelection() Method

OBSOLETE

Use the UnselectAll() method instead

Unselects any selected rows/cards within a View.

Namespace: DevExpress.Xpf.Grid

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

NuGet Package: DevExpress.Wpf.Grid.Core

Declaration

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

Remarks

Multiple row/card selection isn’t allowed if the DataViewBase.NavigationStyle property is set to GridViewNavigationStyle.None and the TableView.MultiSelectMode (CardView.MultiSelectMode in card views) property is set to ‘None’.

The ClearSelection method clears the current selection (clears the DataViewBase.SelectedRows collection). To select all rows/cards, use the DataViewBase.SelectAll method. To select or unselect individual rows/cards, use the GridViewBase.SelectRow and GridViewBase.UnselectRow methods, respectively.

To learn more, see Multiple Row Selection.

See Also