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

GridView.UnSelectCells(Int32, GridColumn, Int32, GridColumn) Method

Unselects cells within the specified range.

Namespace: DevExpress.XtraGrid.Views.Grid

Assembly: DevExpress.XtraGrid.v19.1.dll

Declaration

public void UnSelectCells(
    int startRowHandle,
    GridColumn startColumn,
    int endRowHandle,
    GridColumn endColumn
)

Parameters

Name Type Description
startRowHandle Int32

An integer value that is the handle of the row where the range starts.

startColumn GridColumn

A GridColumn object that is the column where the range starts.

endRowHandle Int32

An integer value that is the handle of the row where the range ends.

endColumn GridColumn

A GridColumn object that is the column where the range ends.

Remarks

The UnSelectCells method unselects the specified block of cells. To unselect any selected cells within the view, use the ColumnView.ClearSelection method.

See Also