Skip to main content

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

Initializes a new instance of the CellValueEventArgs class.

Namespace: DevExpress.Xpf.Grid

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

NuGet Package: DevExpress.Wpf.Grid.Core

Declaration

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

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.

See Also