Skip to main content

GridCellValidationEventArgs.CellValue Property

Gets the cell's old valid value.

Namespace: DevExpress.Xpf.Grid

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

#Declaration

public object CellValue { get; }

#Property Value

Type Description
Object

An object that represents the cell's old valid value.

#Remarks

When handling the GridColumn.Validate event, the cell's curernt value isn't saved to a data source until it is validated. The event parameter's CellValue property returns the cell's old valid value. The current value which is being validated is returned by the event parameter's Value property.

See Also