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

DataControlBase.SelectItem(Int32) Method

Selects the specified row/node.

Namespace: DevExpress.Xpf.Grid

Assembly: DevExpress.Xpf.Grid.v18.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 DataControlBase.UnselectItem method. To clear the current selection, use the DataControlBase.UnselectAll method.

To learn more, see Multiple Row Selection.

The following code snippets (auto-collected from DevExpress Examples) contain references to the SelectItem(Int32) method.

Note

The algorithm used to collect these code examples remains a work in progress. Accordingly, the links and snippets below may produce inaccurate results. If you encounter an issue with code examples below, please use the feedback form on this page to report the issue.

See Also