using Avalonia.Automation.Peers; namespace Avalonia.Automation { /// /// Contains values used as automation property identifiers by UI Automation providers. /// public static class AutomationElementIdentifiers { /// /// Identifies the bounding rectangle automation property. The bounding rectangle property /// value is returned by the method. /// public static AutomationProperty BoundingRectangleProperty { get; } = new AutomationProperty(); /// /// Identifies the class name automation property. The class name property value is returned /// by the method. /// public static AutomationProperty ClassNameProperty { get; } = new AutomationProperty(); /// /// Identifies the name automation property. The class name property value is returned /// by the method. /// public static AutomationProperty NameProperty { get; } = new AutomationProperty(); } }