Search
DayOfWeekFormat Enumeration
See Also
 






Specifies the display format of a day of the week.

Namespace: MindFusion.Scheduling
File: Enum.js

 Syntax

JavaScript  Copy Code

// enum
DayOfWeekFormat = {}

 Members

  Member name Description

Abbreviated

The first three letters of the day of the week are displayed.

Full

The complete name of the day of the week is displayed.

SingleLetter

Only the first letter of the name of the day is displayed.

 Example

The following code renders the full name of the day of the week in a monthSettings property:

JavaScript  Copy Code
var p = MindFusion.Scheduling;
calendar.monthSettings.dayOfWeekFormat = p.DayOfWeekFormat.Full;

 See Also