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

CellValueChangedEventArgs(BaseRow, Int32, Int32, Object) Constructor

Creates a new CellValueChangedEventArgs object.

Namespace: DevExpress.XtraVerticalGrid.Events

Assembly: DevExpress.XtraVerticalGrid.v19.1.dll

Declaration

public CellValueChangedEventArgs(
    BaseRow row,
    int recordIndex,
    int cellIndex,
    object val
)

Parameters

Name Type Description
row BaseRow

A BaseRow object representing the row where a cell resides. This value is assigned to the RowEventArgs.Row property.

recordIndex Int32

An integer value representing the index for the record where the cell resides. This value is assigned to the RowCellEventArgs.RecordIndex property.

cellIndex Int32

An integer value representing the cell’s index. This value is assigned to the RowCellEventArgs.CellIndex property.

val Object

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

Remarks

CellValueChangedEventArgs objects are automatically created and transmitted to the VGridControlBase.CellValueChanging and VGridControlBase.CellValueChanged event handlers.

See Also