Table of Contents

Class AvaloniaPropertyValue

Namespace
Avalonia.Diagnostics
Assembly
Avalonia.Base.dll

Holds diagnostic-related information about the value of an AvaloniaProperty on an AvaloniaObject.

public sealed class AvaloniaPropertyValue
Inheritance
AvaloniaPropertyValue
Inherited Members

Properties

Diagnostic

Gets a diagnostic string.

public string? Diagnostic { get; }

Property Value

string

IsOverriddenCurrentValue

Gets a value indicating whether the Value was overridden by a call to SetCurrentValue<T>(StyledProperty<T>, T).

public bool IsOverriddenCurrentValue { get; }

Property Value

bool

Priority

Gets the priority of the current value.

public BindingPriority Priority { get; }

Property Value

BindingPriority

Property

Gets the property.

public AvaloniaProperty Property { get; }

Property Value

AvaloniaProperty

Value

Gets the current property value.

public object? Value { get; }

Property Value

object