Option Strict On
Option Explicit On

Namespace Nexamas.UI.Application

    ''' <summary>
    ''' Internal alignment contract for PanelShell edge sections such as Toolbar and Footer.
    ''' Start maps to the left edge in the current left-to-right Nexamas UI shell layout.
    ''' </summary>
    Friend Enum MASApplicationPanelShellAlignment
        Start = 0
        Left = 0
        Center = 1
        [End] = 2
        Right = 2
    End Enum

End Namespace
