Option Strict On
Option Explicit On

Namespace Nexamas.UI.Controls

    ''' <summary>
    ''' Public placement intent for MASPopover/MASCallout.  The runtime may flip the
    ''' final pixel bounds to keep the callout inside the available MAS surface.
    ''' </summary>
    Public Enum MASCalloutPlacement
        Auto = 0
        Top = 1
        Bottom = 2
        Left = 3
        Right = 4
    End Enum

End Namespace
