Skip to main content

DxSchedulerRecurrenceInfo.WeekOfMonth Property

Specifies the week in a month on which the appointment reoccurs.

Namespace: DevExpress.Blazor

Assembly: DevExpress.Blazor.v23.2.dll

NuGet Package: DevExpress.Blazor

Declaration

public SchedulerWeekOfMonth WeekOfMonth { get; set; }

Property Value

Type Description
SchedulerWeekOfMonth

A SchedulerWeekOfMonth enumeration value.

Available values:

Name Description Value
None

The week in a month does not affect the recurrence rule.

0

First

The recurrent appointment occurs on the specified day or days of the first week in the month.

1

Second

The recurrent appointment occurs on the specified day or days of the second week in the month.

2

Third

The recurrent appointment occurs on the specified day or days of the third week in the month.

3

Fourth

The recurrent appointment occurs on the specified day or days of the fourth week in the month.

4

Last

The recurrent appointment occurs on the specified day or days of the last week in the month.

5

Remarks

Use the WeekOfMonth property to specify the week in a month to repeat the appointment (the first week, the second week, and so on). Then, use the WeekDays property to define the days in the week.

If the WeekOfMonth property is set to None, the week in a month does not affect the recurrence rule. The WeekDays property is also not in effect. Occurrences are calculated based on the DayNumber property value with the Frequency property (for the Monthly type) or the Month property (for the Yearly type).

See the DxSchedulerRecurrenceInfo class description for more information and an example.

Implements

See Also