Skip to main content

Appointment.RecurrenceInfo Property

Gets an object that contains information about the recurrences of the appointment.

Namespace: DevExpress.XtraScheduler

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

#Declaration

public RecurrenceInfo RecurrenceInfo { get; }

#Property Value

Type Description
RecurrenceInfo

A RecurrenceInfo object that contains information about the appointment's recurrences.

#Remarks

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

If a SchedulerControl is used in bound mode (that is, its data is stored in a database) the RecurrenceInfo property's value may be taken from the data field specified by the AppointmentMapping.RecurrenceInfo property (this property can be accessed via the AppointmentStorage.Mappings property of the AppointmentStorage object).

To get an example on how to specify recurrence information for an appointment, refer to the How to: Create Appointments with Various Recurrence Types Programmatically document.

See Also