Skip to main content
All docs
V25.1
  • MonthlyRecurrenceBuilder Class

    Allows you to define monthly recurrences.

    Namespace: DevExpress.Xpf.Scheduling

    Assembly: DevExpress.Xpf.Scheduling.v25.1.dll

    NuGet Package: DevExpress.Wpf.Scheduling

    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