Skip to main content

AppointmentStorage.SupportsRecurrence Property

Gets whether the information on appointment recurrence is obtained from a datasource.

Namespace: DevExpress.Xpf.Scheduler

Assembly: DevExpress.Xpf.Scheduler.v14.2.dll

#Declaration

public bool SupportsRecurrence { get; }

#Property Value

Type Description
Boolean

true if the information on appointment recurrence is obtained from a datasource; otherwise, false.

#Remarks

In bound mode, the information on appointments is retrieved from and stored back to a datasource, specified by the DataSource and DataMember properties of the AppointmentStorage object.

The appointment recurrence information is obtained from the field specified by the AppointmentMapping.RecurrenceInfo property, an appointment's type (normal, recurring, changed from recurring series, etc) is retrieved from the field specified by the AppointmentMapping.Type property. If any of these properties is set to an empty string, the recurrence information will not be available and the SupportsRecurrence property will return false. Otherwise, this property will return true.

See Also