Skip to main content
All docs
V26.1
  • CellValueChangedEventArgs(Int32, GridColumn, ColumnView, Object) Constructor

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

    Namespace: DevExpress.XtraGrid.Views.Base

    Assembly: DevExpress.XtraGrid.v26.1.dll

    Declaration

    public CellValueChangedEventArgs(
        int rowHandle,
        GridColumn column,
        ColumnView view,
        object oldValue = null
    )

    Parameters

    Name Type Description
    rowHandle Int32

    An integer value that specifies the handle of the row where the cell resides. This value is assigned to the RowHandle property.

    column GridColumn

    The column where the cell resides. This value is assigned to the Column property.

    view ColumnView

    A cell’s owning view.

    Optional Parameters

    Name Type Default Description
    oldValue Object null

    The previous cell value. This value is assigned to the OldValue property.

    See Also