Skip to main content

CellValueChangedEventArgs(RoutedEvent, GridViewBase, Int32, GridColumn, Object, Object) Constructor

Initializes a new instance of the CellValueChangedEventArgs class.

Namespace: DevExpress.Xpf.Grid

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

NuGet Package: DevExpress.Wpf.Grid.Core

Declaration

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

Parameters

Name Type Description
routedEvent RoutedEvent

The routed event.

view GridViewBase

A DataViewBase descendant that is the view that raised the event.

rowHandle Int32

An integer value that specifies the row’s handle. This value is assigned to the RowEventArgs.RowHandle property.

column GridColumn

A GridColumn object that is the column. This value is assigned to the CellValueEventArgs.Column property.

value Object

An object that represents the cell’s new value. This value is assigned to the CellValueEventArgs.Value property.

oldValue Object

An object that represents the cell’s previous value. This value is assigned to the CellValueChangedEventArgs.OldValue property.

See Also