wpf-devexpress-dot-xpf-dot-scheduling-fa26f8fa.md
Allows you to define monthly recurrences.
Namespace : DevExpress.Xpf.Scheduling
Assembly : DevExpress.Xpf.Scheduling.v25.2.dll
NuGet Package : DevExpress.Wpf.Scheduling
public class MonthlyRecurrenceBuilder :
RecurrenceBuilderBase
Public Class MonthlyRecurrenceBuilder
Inherits RecurrenceBuilderBase
The following members return MonthlyRecurrenceBuilder objects:
The example below illustrates how to create a recurrence that lasts 5 months and occurs on the first weekend day of every month.
<!--On 11th day of each month. Four occurrences.-->
<dxsch:AppointmentItem
Type="Pattern"
Start="1/1/2019 13:00:00"
End="1/1/2019 13:05:00"
Subject="On 11th day of each month. Four occurrences."
RecurrenceInfo="{dxsch:RecurrenceMonthly Start='1/1/2019 13:00:00', ByMonthDay=11, OccurrenceCount=4}"
/>
// On 11th day of each month. Four occurrences.
apt1.SetRecurrenceInfo(RecurrenceBuilder.Monthly(apt1.Start, 4).ByDay(11).Build());
' On 11th day of each month. Four occurrences.
apt1.SetRecurrenceInfo(RecurrenceBuilder.Monthly(apt1.Start, 4).ByDay(11).Build())
Object DevExpress.Xpf.Scheduling.RecurrenceBuilderBase MonthlyRecurrenceBuilder
See Also