Skip to main content

ISchedulerStorageBase.FilterReminderAlert Event

Enables you to fire alerts only for specific reminders.

Namespace: DevExpress.XtraScheduler

Assembly: DevExpress.XtraScheduler.v25.1.Core.dll

NuGet Package: DevExpress.Scheduler.Core

#Declaration

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

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.

See Also