GridView.UnSelectCells(Int32, GridColumn, Int32, GridColumn) Method
In This Article
Unselects cells within the specified range.
Namespace: DevExpress.XtraGrid.Views.Grid
Assembly: DevExpress.XtraGrid.v24.2.dll
NuGet Packages: DevExpress.Win.Grid, DevExpress.Win.Navigation
#Declaration
public void UnSelectCells(
int startRowHandle,
GridColumn startColumn,
int endRowHandle,
GridColumn endColumn
)
#Parameters
Name | Type | Description |
---|---|---|
start |
Int32 | An integer value that is the handle of the row where the range starts. |
start |
Grid |
A Grid |
end |
Int32 | An integer value that is the handle of the row where the range ends. |
end |
Grid |
A Grid |
#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