Skip to main content

TableView.SelectCell(Int32, GridColumn) Method

Selects the cell.

Namespace: DevExpress.Xpf.Grid

Assembly: DevExpress.Xpf.Grid.v23.2.dll

NuGet Package: DevExpress.Wpf.Grid.Core

Declaration

public void SelectCell(
    int rowHandle,
    GridColumn column
)

Parameters

Name Type Description
rowHandle Int32

An integer value that specifies the handle of the row where the cell is located.

column GridColumn

A GridColumn object that represents the column which contains the cell.

Remarks

Use the SelectCell method to select a cell, adding it to the existing selection (if any). A cell is located at the intersection of the specified row and column.

The SelectCell method does nothing if the DataViewBase.NavigationStyle property isn’t set to GridViewNavigationStyle.Cell and/or the TableView.MultiSelectMode property isn’t set to TableViewSelectMode.Cell.

To select multiple cells, use the TableView.SelectCells method.

To learn more on multi-cell selection, see Multiple Cell Selection.

See Also