Skip to main content

SchedulerStorage.EnableReminders Property

Gets or sets whether an reminder availability for appointments is enabled.

Namespace: DevExpress.Xpf.Scheduler

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

#Declaration

public bool EnableReminders { get; set; }

#Property Value

Type Description
Boolean

true to enable reminders; otherwise, false.

#Remarks

Use the EnableReminders property to temporarily disable a reminder for appointments. If the EnableReminders is set to false, reminders are present in the storage, and appointments with reminders are indicated by the bell sign (DXScheduler_ReminderIcon), but alerts are not fired.

In bound mode, the information on reminders is stored in the underlying data source. The information used to initialize an appointment's reminder is obtained from the field specified by the AppointmentMapping.ReminderInfo property. If this property is set to an empty string, the reminders will be disabled permanently. You can check whether reminders are present in the storage by using the SchedulerStorage.SupportsReminders property.

Use the SchedulerStorage.RemindersEnabled property, to check whether reminders are supported AND enabled.

See Also