using Avalonia.Automation.Provider; namespace Avalonia.Automation { /// /// Contains values used as identifiers by . /// public static class ScrollPatternIdentifiers { /// /// Specifies that scrolling should not be performed. /// public const double NoScroll = -1; /// /// Identifies automation property. /// public static AutomationProperty HorizontallyScrollableProperty { get; } = new AutomationProperty(); /// /// Identifies automation property. /// public static AutomationProperty HorizontalScrollPercentProperty { get; } = new AutomationProperty(); /// /// Identifies automation property. /// public static AutomationProperty HorizontalViewSizeProperty { get; } = new AutomationProperty(); /// /// Identifies automation property. /// public static AutomationProperty VerticallyScrollableProperty { get; } = new AutomationProperty(); /// /// Identifies automation property. /// public static AutomationProperty VerticalScrollPercentProperty { get; } = new AutomationProperty(); /// /// Identifies automation property. /// public static AutomationProperty VerticalViewSizeProperty { get; } = new AutomationProperty(); } }