AvaloniaPropertyValue Class
Definition
Holds diagnostic-related information about the value of an Avalonia.AvaloniaProperty on an Avalonia.AvaloniaObject.
public class AvaloniaPropertyValue
Properties
| Name | Description |
|---|---|
| Diagnostic | Gets a diagnostic string. |
| IsOverriddenCurrentValue | Gets a value indicating whether the Avalonia.Diagnostics.AvaloniaPropertyValue.Value was overridden by a call to Avalonia.AvaloniaObject.SetCurrentValue<T>(Avalonia.StyledProperty{<>},<>). |
| Priority | Gets the priority of the current value. |
| Property | Gets the property. |
| Value | Gets the current property value. |
Diagnostic Property
Gets a diagnostic string.
public string Diagnostic { get; set; }
IsOverriddenCurrentValue Property
Gets a value indicating whether the Avalonia.Diagnostics.AvaloniaPropertyValue.Value was overridden by a call to Avalonia.AvaloniaObject.SetCurrentValue<T>(Avalonia.StyledProperty{<>},<>).
public bool IsOverriddenCurrentValue { get; set; }
Priority Property
Gets the priority of the current value.
public Avalonia.Data.BindingPriority Priority { get; set; }
Property Property
Gets the property.
public Avalonia.AvaloniaProperty Property { get; set; }
Value Property
Gets the current property value.
public object Value { get; set; }