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

PivotFieldPropertyChangedEventArgs(PivotGridField, PivotFieldPropertyName) Constructor

Initializes a new instance of the PivotFieldPropertyChangedEventArgs class.

Namespace: DevExpress.XtraPivotGrid

Assembly: DevExpress.XtraPivotGrid.v19.1.dll

Declaration

public PivotFieldPropertyChangedEventArgs(
    PivotGridField field,
    PivotFieldPropertyName propertyName
)

Parameters

Name Type Description
field PivotGridField

A PivotGridField object that represents the field whose property has been changed. This value is assigned to the PivotFieldEventArgsBase<T>.Field property.

propertyName PivotFieldPropertyName

A PivotFieldPropertyName 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