DayNameFormat
Enum
Specifies the display formats for the days of the week used as selectors by RadCalendar.You can specify whether the days of the week are displayed as the full name, short (abbreviated) name, first letter of the day, or first two letters of the day.
Definition
Namespace:Telerik.WinControls.UI
Assembly:Telerik.WinControls.UI.dll
Syntax:
C#
public enum DayNameFormat
Fields
The days of the week displayed with just the first letter. For example, T.
C#
FirstLetter = 2
The days of the week displayed with just the first two letters. For example, Tu.
C#
FirstTwoLetters = 3
The days of the week displayed in full format. For example, Tuesday.
C#
Full = 0
The days of the week displayed in abbreviated format. For example, Tues.
C#
Short = 1
The shortest unique abbreviated day names associated with the current DateTimeFormatInfo object.
C#
Shortest = 4