Skip to main content

GridView.IsCellSelected(Int32, GridColumn) Method

Indicates whether the cell is selected.

Namespace: DevExpress.XtraGrid.Views.Grid

Assembly: DevExpress.XtraGrid.v22.2.dll

NuGet Package: DevExpress.Win.Grid

Declaration

public virtual bool IsCellSelected(
    int rowHandle,
    GridColumn column
)

Parameters

Name Type Description
rowHandle Int32

An integer value which specifies the handle of the row where the cell resides.

column GridColumn

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

Returns

Type Description
Boolean

true is the cell is selected; otherwise, false.

Remarks

The cell is located at the intersection of the specified row and column.

See Also