A cross-platform UI framework for .NET
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 

26 lines
739 B

namespace Avalonia.Automation
{
/// <summary>
/// This enum offers different ways of evaluating the IsOffscreen AutomationProperty
/// </summary>
public enum IsOffscreenBehavior
{
/// <summary>
/// The AutomationProperty IsOffscreen is calculated based on IsVisible.
/// </summary>
Default,
/// <summary>
/// The AutomationProperty IsOffscreen is false.
/// </summary>
Onscreen,
/// <summary>
/// The AutomationProperty IsOffscreen if true.
/// </summary>
Offscreen,
/// <summary>
/// The AutomationProperty IsOffscreen is calculated based on clip regions.
/// </summary>
FromClip,
}
}