OptionsBehavior.RemindersFormDefaultAction Property
Gets or sets the type of default action which is applied when the Reminders form is closed.
Namespace: DevExpress.Xpf.Scheduler
Assembly: DevExpress.Xpf.Scheduler.v14.2.dll
#Declaration
#Property Value
Type | Description |
---|---|
Reminders |
A Reminders |
#Property Paths
You can access the OptionsBehavior.RemindersFormDefaultAction property from the following objects:
Object Type | Path to Reminders |
---|---|
Scheduler |
|
#Remarks
If the OptionsBehavior.ShowRemindersForm property value is true, the Reminders form is displayed when the reminder is triggered. The Reminders form contains several buttons enabling end-users to perform the required action - e.g. to snooze or dismiss the reminder. If an end-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 an end-user closes the form, then the SchedulerControl.RemindersFormDefaultAction event occurs.
#Examples
This example demonstrates how to specify basic characteristics of the SchedulerControl using the SchedulerControl.OptionsBehavior property.
<dxsch:SchedulerControl.OptionsBehavior>
<dxsch:OptionsBehavior ClientTimeZoneId="Central Pacific Standard Time"
RecurrentAppointmentDeleteAction="Ask"
RecurrentAppointmentEditAction="Occurrence"
RemindersFormDefaultAction="DismissAll"
ShowRemindersForm="True"
SelectOnRightClick="True"/>
</dxsch:SchedulerControl.OptionsBehavior>