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

Appointment.RecurrencePattern Property

Gets the pattern appointment for the current appointment.

Namespace: DevExpress.XtraScheduler

Assembly: DevExpress.XtraScheduler.v19.1.Core.dll

Declaration

Appointment RecurrencePattern { get; }

Property Value

Type Description
Appointment

An Appointment object that is the pattern appointment or null if the current appointment is not recurring.

Remarks

If an appointment is recurring (see the Appointment.IsRecurring property) it is an occurrence in the series which starts with a pattern appointment and whose characteristics are defined by that pattern. Use the RecurrencePattern property to obtain the pattern of the current appointment. A pattern appointment has the Appointment.Type property set to AppointmentType.Pattern. The recurrence information defined by the pattern appointment can be accessed via the Appointment.RecurrenceInfo property.

Note

If the current appointment does not belong to a recurrence series, the RecurrencePattern property returns null (Nothing is Visual Basic).

The following code snippets (auto-collected from DevExpress Examples) contain references to the RecurrencePattern property.

Note

The algorithm used to collect these code examples remains a work in progress. Accordingly, the links and snippets below may produce inaccurate results. If you encounter an issue with code examples below, please use the feedback form on this page to report the issue.

See Also