DataControlBase.UnselectCell(Int32, GridColumnBase) Method
In This Article
Unselects the specified cell.
Namespace: DevExpress.UI.Xaml.Grid
Assembly: DevExpress.UI.Xaml.Grid.v21.2.dll
NuGet Package: DevExpress.Uwp.Controls
#Declaration
public void UnselectCell(
int rowHandle,
GridColumnBase column
)
#Parameters
Name | Type | Description |
---|---|---|
row |
Int32 | An integer value that specifies the handle of the row, containing the cell. |
column | Grid |
A Grid |
#Remarks
Use the UnselectCell method to unselect individual cells, preserving the existing selection (if any). To select a cell, use the DataControlBase.SelectCell method.
See Also