Skip to main content

PivotCellEditEventArgs(PivotCellViewInfo, BaseEdit) Constructor

Initializes a new instance of the PivotCellEditEventArgs class.

Namespace: DevExpress.XtraPivotGrid

Assembly: DevExpress.XtraPivotGrid.v23.2.dll

NuGet Package: DevExpress.Win.PivotGrid

Declaration

public PivotCellEditEventArgs(
    PivotCellViewInfo cellViewInfo,
    BaseEdit edit
)

Parameters

Name Type Description
cellViewInfo DevExpress.XtraPivotGrid.ViewInfo.PivotCellViewInfo

A DevExpress.XtraPivotGrid.ViewInfo.PivotCellViewInfo object.

edit BaseEdit

A BaseEdit object, which is the editor that has been invoked or closed. This value is assigned to the PivotCellEditEventArgs.Edit property.

Remarks

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

See Also