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

PivotFieldPropertyChangedEventArgs(RoutedEvent, PivotGridField, FieldPropertyName) Constructor

Initializes a new instance of the PivotFieldPropertyChangedEventArgs class.

Namespace: DevExpress.Xpf.PivotGrid

Assembly: DevExpress.Xpf.PivotGrid.v19.1.dll

Declaration

public PivotFieldPropertyChangedEventArgs(
    RoutedEvent routedEvent,
    PivotGridField field,
    FieldPropertyName propertyName
)

Parameters

Name Type Description
routedEvent RoutedEvent

The routed event.

field PivotGridField

A PivotGridField object that represents the field whose property has been changed. This value is assigned to the PivotFieldEventArgs.Field property.

propertyName FieldPropertyName

A FieldPropertyName enumeration member that specifies which property has been changed. This value is assigned to the PivotFieldPropertyChangedEventArgs.PropertyName property.

Remarks

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

See Also