PivotPropertyChangedEventArgs(RoutedEvent, DependencyPropertyChangedEventArgs, Object) Constructor
Initializes a new instance of the PivotPropertyChangedEventArgs class.
Namespace: DevExpress.Xpf.PivotGrid
Assembly: DevExpress.Xpf.PivotGrid.v24.1.dll
NuGet Package: DevExpress.Wpf.PivotGrid
Declaration
public PivotPropertyChangedEventArgs(
RoutedEvent evt,
DependencyPropertyChangedEventArgs args,
object source
)
Parameters
Name | Type | Description |
---|---|---|
evt | RoutedEvent | The routed event. |
args | DependencyPropertyChangedEventArgs | A DependencyPropertyChangedEventArgs object that provides data for the property changed event. |
source | Object | The event source. |
Remarks
Instances of the PivotPropertyChangedEventArgs class are automatically created, initialized and passed to the PivotGridControl.PropertyChanged event handlers. Typically, there is no need to call this constructor directly from your code.
See Also