Skip to main content

RemindersFormDefaultActionEventArgs Class

Provides data for the SchedulerControl.RemindersFormDefaultAction event.

Namespace: DevExpress.XtraScheduler

Assembly: DevExpress.XtraScheduler.v23.2.Core.Desktop.dll

NuGet Package: DevExpress.Scheduler.CoreDesktop

Declaration

public class RemindersFormDefaultActionEventArgs :
    ReminderEventArgs

Remarks

The SchedulerControl.RemindersFormDefaultAction event occurs when an end-user closes the Reminders Form and the SchedulerOptionsBehaviorBase.RemindersFormDefaultAction property is set to Custom. The RemindersFormDefaultActionEventArgs class introduces a RemindersFormDefaultActionEventArgs.Cancel property which can be set to true if you don’t want the Reminders Form to be closed. The processed reminders notifications are identified by the ReminderEventArgs.AlertNotifications property.

After the RemindersFormDefaultAction event has been handled, you should set the RemindersFormDefaultActionEventArgs.Handled property to true. If the RemindersFormDefaultActionEventArgs.Handled property will not be set to true in this event handler, then all reminders will be dismissed. This behavior is similar to MS Outlook.

An instance of the RemindersFormDefaultActionEventArgs class with appropriate settings is automatically created and passed to the corresponding event’s handler.

Inheritance

See Also