Skip to main content

DataControlBase.UnselectCell(Int32, GridColumnBase) Method

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
rowHandle Int32

An integer value that specifies the handle of the row, containing the cell.

column GridColumnBase

A GridColumnBase object that represents the column, containing the cell.

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