Skip to main content

DataControlBase.UnselectItem(Int32) Method

Unselects the specified row/node.

Namespace: DevExpress.Xpf.Grid

Assembly: DevExpress.Xpf.Grid.v14.2.Core.dll

#Declaration

public void UnselectItem(
    int rowHandle
)

#Parameters

Name Type Description
rowHandle Int32

An integer value identifying the row/node by its handle.

#Remarks

The UnselectItem method allows you to unselect the required row/card preserving the current selection. To select a row/card, use the DataControlBase.SelectItem method.

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

To learn more, see Selection.

See Also