Skip to main content

PivotFieldFilterChangingEventArgs(RoutedEvent, PivotGridField, FieldFilterType, IList<Object>) Constructor

Initializes a new instance of the PivotFieldFilterChangingEventArgs class.

Namespace: DevExpress.Xpf.PivotGrid

Assembly: DevExpress.Xpf.PivotGrid.v23.2.dll

NuGet Package: DevExpress.Wpf.PivotGrid

Declaration

public PivotFieldFilterChangingEventArgs(
    RoutedEvent routedEvent,
    PivotGridField field,
    FieldFilterType filterType,
    IList<object> values
)

Parameters

Name Type Description
routedEvent RoutedEvent

The routed event.

field PivotGridField

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

filterType FieldFilterType

A FieldFilterType enumeration member that specifies the current filter type.

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