windowsforms-devexpress-dot-xtrascheduler-dot-schedulerdatastorage-85b64da4.md
Gets or sets whether the Reminder availability for appointments is enabled.
Namespace : DevExpress.XtraScheduler
Assembly : DevExpress.XtraScheduler.v25.2.dll
NuGet Package : DevExpress.Win.Scheduler
[DefaultValue(true)]
public bool EnableReminders { get; set; }
<DefaultValue(True)>
Public Property EnableReminders As Boolean
| Type | Default | Description |
|---|---|---|
| Boolean | true |
true to enable reminders; otherwise, false.
|
Use the EnableReminders property to temporarily disable Reminders 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 ( , 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 AppointmentMappingInfo.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 SchedulerDataStorage.SupportsReminders property.
Use the SchedulerDataStorage.RemindersEnabled property to check whether reminders are supported AND enabled.
See Also