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

PivotFieldFilterChangingEventArgs(PivotGridField, PivotFilterType, Boolean, IList<Object>) Constructor

Initializes a new instance of the PivotFieldFilterChangingEventArgs class.

Namespace: DevExpress.XtraPivotGrid

Assembly: DevExpress.XtraPivotGrid.v19.2.dll

Declaration

public PivotFieldFilterChangingEventArgs(
    PivotGridField field,
    PivotFilterType filterType,
    bool showBlanks,
    IList<object> values
)

Parameters

Name Type Description
field PivotGridField

A PivotGridField object that represents the field for which the event has been raised.

filterType PivotFilterType

A PivotFilterType enumeration member that specifies the current filter type.

showBlanks Boolean

true if records that contain NULL values in the current field are processed by the control; false if these records are ignored.

values IList<Object>

A collection of filter values.

Remarks

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

See Also