Skip to main content
A newer version of this page is available. .

ISchedulerRecurrenceInfo.WeekOfMonth Property

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

Namespace: DevExpress.Blazor

Assembly: DevExpress.Blazor.v20.2.dll

NuGet Package: DevExpress.Blazor

Declaration

SchedulerWeekOfMonth WeekOfMonth { get; set; }

Property Value

Type Description
SchedulerWeekOfMonth

Specifies the week in a month.

Available values:

Name Description
None

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

First

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

Second

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

Third

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

Fourth

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

Last

The recurrent appointment occurs on the specified day or days of the last week in the month. Corresponds to 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).

Note

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

See Also