Skip to main content
A newer version of this page is available.

CellValueChangedEventArgs(Int32, GridColumn, Object) Constructor

Creates an instance of the CellValueChangedEventArgs class.

Namespace: DevExpress.XtraGrid.Views.Base

Assembly: DevExpress.XtraGrid.v19.1.dll

Declaration

public CellValueChangedEventArgs(
    int rowHandle,
    GridColumn column,
    object value
)

Parameters

Name Type Description
rowHandle Int32

An integer value representing the handle of the row where a cell resides. This value is assigned to the CellValueChangedEventArgs.RowHandle property.

column GridColumn

A GridColumn object representing the column where the cell resides. This value is assigned to the CellValueChangedEventArgs.Column property.

value Object

An object representing the new cell value. This value is assigned to the CellValueChangedEventArgs.Value property.

Remarks

Instances of CellValueChangedEventArgs class are automatically created and transmitted to ColumnView.CellValueChanging and ColumnView.CellValueChanged event handlers.

See Also