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