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

AppointmentStorageBase.SupportsReminders Property

Gets whether the appointment reminder data mapping is specified.

Namespace: DevExpress.XtraScheduler

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

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

Declaration

[Browsable(false)]
public bool SupportsReminders { get; }

Property Value

Type Description
Boolean

True if the information on appointment reminders is obtained from a data source so that the scheduler can have appointments with reminders; otherwise, false.

Remarks

In bound mode, the information on appointments and reminders is retrieved from and stored back to a data source which is specified by the PersistentObjectStorage<T>.DataMember and PersistentObjectStorage<T>.DataSource properties of the AppointmentStorageBase object. The information used to initialize an appointment’s reminder is obtained from the field specified by the AppointmentMappingInfo.ReminderInfo property. If this property is set to an empty string, the reminders will not be supported and the SupportsReminders property will return false. Otherwise, this property will return true.

If the SupportsReminders value is false, the scheduler cannot contain reminders, and appointment reminders cannot be created.

See Also