How to: Customize Monthly Recurrence (legacy)
- 2 minutes to read
Note
You are viewing documentation for the legacy WPF Scheduler control. If you’re starting a new project, we strongly recommend that you use a new control declared in the DevExpress.
An appointment occurs on the 11th day of each month. Four occurrences are specified.
An appointment occurs on the last Wednesday of the month, for 2 months. The occurrence chain has no end date.
An appointment occurs on the first Monday of the month for 3 months. The duration is one year.
apt.RecurrenceInfo.Type = RecurrenceType.Monthly; apt.RecurrenceInfo.Periodicity = 3; apt.RecurrenceInfo.Start = apt.Start; apt.RecurrenceInfo.WeekOfMonth = WeekOfMonth.First; apt.RecurrenceInfo.WeekDays = WeekDays.Monday; apt.RecurrenceInfo.Range = RecurrenceRange.EndByDate; apt.RecurrenceInfo.End = apt.RecurrenceInfo.Start.AddYears(1);