Skip to main content
A newer version of this page is available. .

DataControlBase.UnselectItem(Int32) Method

Unselects the specified item.

Namespace: DevExpress.UI.Xaml.Grid

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

Declaration

public void UnselectItem(
    int itemHandle
)

Parameters

Name Type Description
itemHandle Int32

An integer value identifying the data item by its handle.

Remarks

The UnselectItem method allows you to unselect the required item preserving the current selection. 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