







An enumeration of built-in recurring event frequencies
Namespace: Calendar.NET
Assembly: Calendar.NET (in Calendar.NET.dll) Version: 1.0.0.0 (1.0.0.0)
Syntax
| C# |
|---|
public enum RecurringFrequencies |
| Visual Basic |
|---|
Public Enumeration RecurringFrequencies |
| Visual C++ |
|---|
public enum class RecurringFrequencies |
Members
| Member name | Value | Description | |
|---|---|---|---|
| None | 0 | Indicates that the event is non recurring will occur only one time | |
| Daily | 1 | Indicates that the event will occur every day | |
| EveryWeekday | 2 | Indicates that the event will occur every week day (Mon - Fri) | |
| EveryMonWedFri | 3 | Indicates that the event will occur every Mon, Wed and Fri | |
| EveryTueThurs | 4 | Indicates that the event will occur every Tuesday and Thursday | |
| Weekly | 5 | Indicates that the event will occur every week | |
| Monthly | 6 | Indicates that the event will occur every month | |
| Yearly | 7 | Indicates that the event will occur once a year, on the month and day specified | |
| EveryWeekend | 8 | Indicates that the event will occur every weekend on Saturday and Sunday | |
| Custom | 99 | Indicates that the recuring schedule of this event is unique |
