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

AppointmentStorage.SupportsRecurrence Property

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

Namespace: DevExpress.Xpf.Scheduler

Assembly: DevExpress.Xpf.Scheduler.v19.1.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

Important

You are viewing documentation for the legacy WPF Scheduler control. If you’re starting a new project, we strongly recommend that you use a new control declared in the DevExpress.Xpf.Scheduling namespace. If you decide to upgrade an existing project in order to switch to the updated scheduler control, see the Migration Guidelines document.

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