Specifies the day of the week. This enum allows bitwise combination of its members.
Namespace: MindFusion.Scheduling
File: Enum.js
SyntaxJavaScript
Copy Code
|
|---|
// enum |
Members| Member name | Description | |
|---|---|---|
![]() |
All |
Indicates all days of the week. |
![]() |
Friday |
Indicates Friday. |
![]() |
Monday |
Indicates Monday. |
![]() |
None |
Indicates an undefined day value. |
![]() |
Saturday |
Indicates Saturday. |
![]() |
Sunday |
Indicates Sunday. |
![]() |
Thursday |
Indicates Thursday. |
![]() |
Tuesday |
Indicates Tuesday. |
![]() |
Wednesday |
Indicates Wednesday. |
ExampleThe following code creates a recurrence for a schedule item for each Wednesday:
JavaScript
Copy Code
|
|---|
var p = MindFusion.Scheduling; // setup the recurrence |
See Also