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

MonthlyRecurrenceBuilder Class

Allows you to define monthly recurrences.

Namespace: DevExpress.Xpf.Scheduling

Assembly: DevExpress.Xpf.Scheduling.v19.2.dll

Declaration

public class MonthlyRecurrenceBuilder :
    RecurrenceBuilderBase

Remarks

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}"
    />

Inheritance

Object
DevExpress.Xpf.Scheduling.RecurrenceBuilderBase
MonthlyRecurrenceBuilder
See Also