Skip to main content

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

public RemindersFormDefaultAction RemindersFormDefaultAction { get; set; }

#Property Value

Type Description
RemindersFormDefaultAction

A RemindersFormDefaultAction enumeration value specifying the type of action to be applied after the Reminders form is closed.

#Property Paths

You can access the OptionsBehavior.RemindersFormDefaultAction property from the following objects:

Object Type Path to RemindersFormDefaultAction
SchedulerControl
.OptionsBehavior.RemindersFormDefaultAction

#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.

DXScheduler_ReminderForm

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>
See Also