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.v24.1.Core.Desktop.dll
NuGet Package: DevExpress.Scheduler.CoreDesktop
Declaration
[XtraSerializableProperty]
public RemindersFormDefaultAction RemindersFormDefaultAction { get; set; }
Property Value
Type | Description |
---|---|
RemindersFormDefaultAction | 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. |
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.