Skip to main content

PivotFieldPropertyChangedEventArgs(PivotGridField, PivotFieldPropertyName) Constructor

Initializes a new instance of the PivotFieldPropertyChangedEventArgs class.

Namespace: DevExpress.Web.ASPxPivotGrid

Assembly: DevExpress.Web.ASPxPivotGrid.v23.2.dll

NuGet Package: DevExpress.Web

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 ASPxPivotGrid.FieldPropertyChanged event handlers. Typically, there is no need to call this constructor directly from your code.

See Also