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

Appointment.RecurrenceInfo Property

Gets information that specifies recurrence rules.

Namespace: DevExpress.XtraScheduler

Assembly: DevExpress.XtraScheduler.v20.2.Core.dll

NuGet Packages: DevExpress.Scheduler.Core, DevExpress.WindowsDesktop.Scheduler.Core

Declaration

IRecurrenceInfo RecurrenceInfo { get; }

Property Value

Type Description
IRecurrenceInfo

A IRecurrenceInfo object that contains information about recurrence rules.

Remarks

If the current appointment is recurring the RecurrenceInfo property provides access to its recurrence rules. For the appointments whose type is AppointmentType.Normal this property returns null (Nothing in Visual Basic).

Important

When working with recurring appointments in bound mode, specify the AppointmentMappingInfo.RecurrenceInfo and AppointmentMappingInfo.Type mappings for correct operation.

To specify recurrence information for an appointment, do not create the RecurrenceInfo instance. It is created automatically for appointment’s pattern. Use the technique described in the How to: Create Appointments with Various Recurrence Types Programmatically document.

Tip

Use the RecurrenceInfo.ToXml and RecurrenceInfo.FromXml methods to save and load the recurrence information in xml format.

The following code snippets (auto-collected from DevExpress Examples) contain references to the RecurrenceInfo 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