Specifies the type of week day to use with monthly and yearly recurrence patterns.
Namespace: MindFusion.Scheduling
File: Enum.js
SyntaxJavaScript
Copy Code
|
|---|
// enum |
Members| Member name | Description | |
|---|---|---|
![]() |
AnyDay |
Indicates any day. |
![]() |
Friday |
Indicates Friday. |
![]() |
Monday |
Indicates Monday. |
![]() |
Saturday |
Indicates Saturday. |
![]() |
Sunday |
Indicates Sunday. |
![]() |
Thursday |
Indicates Thursday. |
![]() |
Tuesday |
Indicates Tuesday. |
![]() |
Wednesday |
Indicates Wednesday. |
![]() |
Weekend |
Indicates a weekend day. |
![]() |
Workday |
Indicates a workday. |
RemarksUsed by the Recurrence.day property.
ExampleThe following code creates a Recurrence with weekly RecurrencePattern (every Wednesday) for a schedule item:
JavaScript
Copy Code
|
|---|
var p = MindFusion.Scheduling; // setup the recurrence |
See Also