HeaderControl.DependencyPropertyChanged Event
Namespace: DevExpress.Xpf.Scheduling.Visual
Assembly: DevExpress.Xpf.Scheduling.v24.1.dll
NuGet Package: DevExpress.Wpf.Scheduling
Declaration
Event Data
The DependencyPropertyChanged event's data class is DependencyPropertyChangedEventArgs. The following properties provide information specific to this event:
Property | Description |
---|---|
NewValue | Gets the value of the property after the change. |
OldValue | Gets the value of the property before the change. |
Property | Gets the identifier for the dependency property where the value change occurred. |
The event data class exposes the following methods:
Method | Description |
---|---|
Equals(Object) | Determines whether the provided object is equivalent to the current DependencyPropertyChangedEventArgs. |
Equals(DependencyPropertyChangedEventArgs) | Determines whether the provided DependencyPropertyChangedEventArgs is equivalent to the current DependencyPropertyChangedEventArgs. |
GetHashCode() | Gets a hash code for this DependencyPropertyChangedEventArgs. |
ToString() | Returns the fully qualified type name of this instance. Inherited from ValueType. |
See Also