Skip to main content
All docs
V19.1

AppointmentItem.RecurrenceInfo Property

Gets information that specifies an appointment’s recurrence rule.

Namespace: DevExpress.Xpf.Scheduling

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

Declaration

public 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 AppointmentMappings.RecurrenceInfo and AppointmentMappings.Type mappings for correct operation.

Review the How to: Create Recurrence in Code document for information on creating recurrence info for an appointment..

Tip

You can use the IRecurrenceInfo.ToXml, IRecurrenceInfo.FromXml and RecurrenceInfoXmlPersistenceHelper.ObjectFromXml methods to save and load the recurrence information in XML format.

See Also