Option Strict On
Option Explicit On

Namespace Nexamas.UI.Components

    ''' <summary>
    ''' Public view modes owned by MASAgendaView. The modes control only visual
    ''' range presentation and navigation; recurrence, booking storage, reminders,
    ''' and external calendar providers remain outside the control.
    ''' </summary>
    Public Enum MASAgendaViewMode
        Day = 0
        Week = 1
        Month = 2
    End Enum

End Namespace
