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

EditValueChangedEventArgs(PivotCellViewInfo, BaseEdit) Constructor

Initializes a new instance of the EditValueChangedEventArgs class.

Namespace: DevExpress.XtraPivotGrid

Assembly: DevExpress.XtraPivotGrid.v19.1.dll

Declaration

public EditValueChangedEventArgs(
    PivotCellViewInfo cellInfo,
    BaseEdit editor
)

Parameters

Name Type Description
cellInfo DevExpress.XtraPivotGrid.ViewInfo.PivotCellViewInfo

A DevExpress.XtraPivotGrid.ViewInfo.PivotCellViewInfo object.

editor BaseEdit

A BaseEdit object representing an editor that was used to change the processed cell value. This value is assigned to the EditValueChangedEventArgs.Editor property.

Remarks

Instances of the EditValueChangedEventArgs class are automatically created, initialized and passed to the PivotGridControl.EditValueChanged event handlers. Typically, there is no need to call this constructor directly from your code.

See Also