DependencyPropertyChangedEventArgs.OldValue Property

Definition

Gets the value of the dependency property before the reported change.

public:
 property Platform::Object ^ OldValue { Platform::Object ^ get(); };
IInspectable OldValue();
public object OldValue { get; }
var object = dependencyPropertyChangedEventArgs.oldValue;
Public ReadOnly Property OldValue As Object

Property Value

Object

Platform::Object

IInspectable

The dependency property value before the change.

Remarks

The OldValue value is often used as the value that the property is set to from within the callback, in case the NewValue value is not considered a valid value for your property's logic . For example, if you are using the callback for validation of an input value for a property that the user can set in UI, the previous value is typically a better value to use as the current value rather than resetting the value to a default. The callback is effectively canceling a change.

Applies to

See also