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

SchedulerOptionsBehaviorBase.RemindersFormDefaultAction Property

Gets or sets the type of default action which is applied when the Reminders Form is closed.

Namespace: DevExpress.XtraScheduler

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

Declaration

[DefaultValue(RemindersFormDefaultAction.DismissAll)]
[XtraSerializableProperty]
public RemindersFormDefaultAction RemindersFormDefaultAction { get; set; }

Property Value

Type Default Description
RemindersFormDefaultAction **DismissAll**

A RemindersFormDefaultAction enumeration value.

Available values:

Name Description
DismissAll

After the Reminders form is closed, all reminders will be dismissed.

SnoozeAll

After the Reminders form is closed, all reminders will be snoozed.

Custom

After the Reminders form is closed, whether the reminders are snoozed or dismissed is determined manually in the SchedulerControl.RemindersFormDefaultAction or SchedulerControl.RemindersFormDefaultAction event handler.

Property Paths

You can access this nested property as listed below:

Library Object Type Path to RemindersFormDefaultAction
WinForms Controls SchedulerControl
.OptionsBehavior.RemindersFormDefaultAction
ASP.NET Bootstrap Controls BootstrapScheduler
.OptionsBehavior.RemindersFormDefaultAction
ASP.NET Web Forms Controls ASPxScheduler
.OptionsBehavior.RemindersFormDefaultAction
MVCxScheduler
.OptionsBehavior.RemindersFormDefaultAction
SchedulerSettings
.OptionsBehavior.RemindersFormDefaultAction

Remarks

If the SchedulerOptionsBehaviorBase.ShowRemindersForm property value is true, the Reminders Form is displayed when the reminder is triggered. The Reminders form contains several action buttons enabling the end-user to perform the required action - e.g. to snooze or dismiss the reminder. If the user decides to simply close the form (by clicking the Close button in the upper right corner, for example), an action specified by the RemindersFormDefaultAction property is performed. By default, it is the RemindersFormDefaultAction.DismissAll action.

If the RemindersFormDefaultAction is set to RemindersFormDefaultAction.Custom and the user closes the form, then the SchedulerControl.RemindersFormDefaultAction event occurs.

See Also