Skip to main content

DataControlBase.UnselectItem(Object) Method

Unselects the specified item.

Namespace: DevExpress.UI.Xaml.Grid

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

NuGet Package: DevExpress.Uwp.Controls

Declaration

public void UnselectItem(
    object item
)

Parameters

Name Type Description
item Object

An object that is the item to unselect.

Remarks

The UnselectItem method allows you to unselect the required item preserving the current selection (if any). To select an item, use the DataControlBase.SelectItem method.

To clear the current selection, use the DataControlBase.UnselectAll method. To select all items, use the DataControlBase.SelectAll method.

See Also