DxSchedulerRecurrenceInfo.WeekOfMonth Property
Specifies the week in a month on which the appointment reoccurs.
Namespace: DevExpress.Blazor
Assembly: DevExpress.Blazor.v24.1.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. |
|
First | The recurrent appointment occurs on the specified day or days of the first week in the month. |
|
Second | The recurrent appointment occurs on the specified day or days of the second week in the month. |
|
Third | The recurrent appointment occurs on the specified day or days of the third week in the month. |
|
Fourth | The recurrent appointment occurs on the specified day or days of the fourth week in the month. |
|
Last | The recurrent appointment occurs on the specified day or days of the last week in the month. |
|
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.