OptionsBehavior.ShowRemindersForm Property
In This Article
Gets or sets whether a Reminders form is shown when the time has come for the reminder to alert.
Namespace: DevExpress.Xpf.Scheduler
Assembly: DevExpress.Xpf.Scheduler.v14.2.dll
#Declaration
#Property Value
Type | Description |
---|---|
Boolean | true if a Reminders form is shown; otherwise, false. |
#Property Paths
You can access the OptionsBehavior.ShowRemindersForm property from the following objects:
Object Type | Path to Show |
---|---|
Scheduler |
|
#Remarks
Use the ShowRemindersForm property to specify whether the Reminders form should be shown or not.
If the ShowRemindersForm is set to false, then the reminder will be silently dismissed, instead of displaying the Reminders form.
#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>
See Also