RecurringEvents Enumeration |
Summary description for RecurringEvents.
DayInMonth - Only the day part of the date is taken into account. That gives the ability to serve events repeated every month on the same day.
DayAndMonth - The month and the day part of the date is taken into account. That gives the ability to serve events repeated in a specific month on the same day.
Today - gives the ability to control the visual appearace of today's date.
None - Default value, means that the day in question is a single point event, no recurrences.
Namespace: Kettic.AspNet.Controls.CalendarAssembly: Kettic.AspNet.Controls (in Kettic.AspNet.Controls.dll) Version: 2014.4.1129.0 (2014.04.1129.0)
Syntaxpublic enum RecurringEvents
Public Enumeration RecurringEvents
public enum class RecurringEvents
Members
| Member name | Value | Description |
---|
| DayInMonth | 1 |
Only the day part of the date is taken into account. That gives the ability to serve events repeated every month on the same day.
|
| DayAndMonth | 2 |
The month and the day part of the date are taken into account. That gives the ability to serve events repeated in a specific month on the same day.
|
| Week | 4 |
The week day is taken into account. That gives the ability to serve events repeated in a specific day of the week.
|
| WeekAndMonth | 8 |
The week day and the month are taken into account. That gives the ability to serve events repeated in a specific week day in a specific month.
|
| Today | 16 |
Gives the ability to control the visual appearace of today's date.
|
| WeekDayWeekNumberAndMonth | 32 |
The week number, the weekday (Mon, Tue, etc.) and the month are taken into account. That gives the ability to serve public holiday events
repeated each year (e.g. Martin Luther King Jr. Day is observed on the third Monday of January each year
so you would specify as a date Jan 21st, 2008 (or Jan 19th, 2009 -- it would have the same effect).
|
| None | 64 |
Default value, means that the day in question is a single point event, no recurrence.
|
See Also