Skip to main content

GridCellValidationEventArgs(Object, Object, Int32, GridViewBase, GridColumn) Constructor

In This Article

Initializes a new instance of the GridCellValidationEventArgs class.

Namespace: DevExpress.Xpf.Grid

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

#Declaration

public GridCellValidationEventArgs(
    object source,
    object value,
    int rowHandle,
    GridViewBase view,
    GridColumn column
)

#Parameters

Name Type Description
source Object

An object that raised the event.

value Object

An object that represents the cell's value currently being validated.

rowHandle Int32

An integer value that specifies the handle of the row that contains the cell. This value is assigned to the GridRowValidationEventArgs.RowHandle property.

view GridViewBase

A GridViewBase descendant that represents the grid's view.

column GridColumn

A GridColumn object that represents the column whose cell is validated. This value is assigned to the GridCellValidationEventArgs.Column property.

See Also