WinRTXamlToolkit.Controls.Calendar.IsValidDisplayMode C# (CSharp) Method

IsValidDisplayMode() private static method

Inherited code: Requires comment.
private static IsValidDisplayMode ( CalendarMode mode ) : bool
mode CalendarMode Inherited code: Requires comment 1.
return bool
        private static bool IsValidDisplayMode(CalendarMode mode)
        {
            return mode == CalendarMode.Month
                || mode == CalendarMode.Year
                || mode == CalendarMode.Decade;
        }