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

GridCellValidationEventArgs.Cell Property

Gets the CellValue object consisting of information about the cell being processed.

Namespace: DevExpress.Xpf.Grid

Assembly: DevExpress.Xpf.Grid.v19.2.dll

Declaration

public CellValue Cell { get; }

Property Value

Type Description
DevExpress.Mvvm.CellValue

The CellValue object consisting of information about the cell being processed.

Remarks

The Cell property returns the CellValue object that encapsulates information about the cell being processed. The CellValue type provides the following properties:

  • CellValue.Row – the handle of the row containing the cell.
  • CellValue.Property – the data source field name that corresponds to the column containing the cell.
  • CellValue.Value – the object that represents the current value of the cell.
See Also