Skip to main content

DataControlBase.SelectItem(Int32) Method

Selects the specified row/node.

Namespace: DevExpress.Xpf.Grid

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

#Declaration

public void SelectItem(
    int rowHandle
)

#Parameters

Name Type Description
rowHandle Int32

An integer value which specifies the handle of the row to select.

#Remarks

The SelectItem method allows you to select the required row/card while preserving the current selection. If the specified row/card is hidden within a collapsed group, the SelectItem method does nothing.

To unselect a row/card, use the GridViewBase.UnselectRow method. To clear the current selection, use the GridViewBase.ClearSelection method.

See Also