AvaloniaPropertyChangedEventArgs.

IsEffectiveValueChange Property

Summary

Gets a value indicating whether the change represents a change to the effective value of the property.
Namespace
Avalonia
Containing Type
AvaloniaPropertyChangedEventArgs

Syntax

public bool IsEffectiveValueChange { get; private set; }

Remarks

This will usually be true, except in AvaloniaObject.OnPropertyChangedCore<T>(AvaloniaPropertyChangedEventArgs<T>) which recieves notifications for all changes to property values, whether a value with a higher priority is present or not. When this property is false, the change that is being signalled has not resulted in a change to the property value on the object.

Value

Type Description
bool