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();
///
/// Identifies the helpText automation property. The class name property value is returned
/// by the method.
///
public static AutomationProperty HelpTextProperty { get; } = new AutomationProperty();
///
/// Identifies the itemStatus automation property. The class name property value is returned
/// by the method.
///
public static AutomationProperty ItemStatusProperty { get; } = new AutomationProperty();
///
/// Identifies the landmark type automation property. The class name property value is returned
/// by the method.
///
public static AutomationProperty LandmarkTypeProperty { get; } = new AutomationProperty();
///
/// Identifies the heading level automation property. The class name property value is returned
/// by the method.
///
public static AutomationProperty HeadingLevelProperty { get; } = new AutomationProperty();
}
}