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

SchedulerStorage.FilterReminderAlert Event

Enables you to fire alerts only for specific reminders.

Namespace: DevExpress.Xpf.Scheduler

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

Declaration

public event EventHandler<ReminderCancelEventArgs> FilterReminderAlert

Event Data

The FilterReminderAlert event's data class is ReminderCancelEventArgs. The following properties provide information specific to this event:

Property Description
Cancel Gets or sets whether the operation performed on the processed event should be canceled.
Reminder Gets the reminder for which an alert will be fired.

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 FilterReminderAlert event occurs for each appointment with a reminder when it is loaded into the storage and processed. If you handle this event and set e.Cancel = true in the event’s handler, an alert for that particular reminder will not fire. However, that reminder is still indicated with a bell sign and available for editing.

See Also