Skip to main content
All docs
V25.2
  • CellEditorValueChangingEventArgs(RoutedEvent, GridViewBase, Int32, GridColumn, Object, Object) Constructor

    Initializes a new instance of the CellEditorValueChangingEventArgs class with specified settings.

    Namespace: DevExpress.Xpf.Grid

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

    Declaration

    public CellEditorValueChangingEventArgs(
        RoutedEvent routedEvent,
        GridViewBase view,
        int rowHandle,
        GridColumn column,
        object value,
        object oldValue
    )

    Parameters

    Name Type Description
    routedEvent RoutedEvent

    The routed event.

    view GridViewBase

    The view that raised the event.

    rowHandle Int32

    The target row’s handle.

    column GridColumn

    The target column.

    value Object

    The new cell editor value.

    oldValue Object

    The old cell editor value.

    See Also