New to Telerik UI for WinFormsStart a free 30-day trial

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.

Definition

Namespace:Telerik.WinControls.UI

Assembly:Telerik.WinControls.UI.dll

Syntax:

C#
public enum RecurringEvents

Fields

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.

C#
DayAndMonth = 2
Field Value:

2

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.

C#
DayInMonth = 1
Field Value:

1

Default value, means that the day in question is a single point event, no recurrence.

C#
None = 32
Field Value:

32

Gives the ability to control the visual appearace of today's date.

C#
Today = 16
Field Value:

16

The week day is taken into account. That gives the ability to serve events repeated in a specific day of the week.

C#
Week = 4
Field Value:

4

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.

C#
WeekAndMonth = 8
Field Value:

8