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

SchedulerStorage.RemindersEnabled Property

Gets whether the reminders are enabled.

Namespace: DevExpress.Xpf.Scheduler

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

Declaration

public bool RemindersEnabled { get; }

Property Value

Type Description
Boolean

true if the reminders are enabled; 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.

The RemindersEnabled property returns a Boolean value which specifies whether reminders for appointments are supported AND enabled.

In bound mode, the information on appointments and 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 not be supported and the SchedulerStorage.SupportsReminders is false.

If reminders are supported, you can use the SchedulerStorage.EnableReminders property to temporarily disable reminders.

In unbound mode, reminders are enabled if the SchedulerStorage.EnableReminders property is set to true. Otherwise, the reminders are disabled.

See Also