OptionsBehavior.RecurrentAppointmentDeleteAction Property
Gets or sets a type of action being performed when a command is issued to delete a recurrent appointment.
Namespace: DevExpress.Xpf.Scheduler
Assembly: DevExpress.Xpf.Scheduler.v18.2.dll
Declaration
public RecurrentAppointmentAction RecurrentAppointmentDeleteAction { get; set; }
Public Property RecurrentAppointmentDeleteAction As RecurrentAppointmentAction
Property Value
Type | Description |
---|---|
RecurrentAppointmentAction | A RecurrentAppointmentAction enumeration value that is the type of an action. |
Property Paths
You can access this nested property as listed below:
Object Type | Path to RecurrentAppointmentDeleteAction |
---|---|
SchedulerControl |
|
Remarks
IMPORTANT
You are viewing documentation for the legacy WPF Scheduler control. If you're starting a new project, we strongly recommend that you use a new control declared in the DevExpress.Xpf.Scheduling namespace. If you decide to upgrade an existing project in order to switch to the updated scheduler control, see the Migration Guidelines document.
Use the RecurrentAppointmentDeleteAction property to specify whether the delete command should delete the entire series or the current appointment, do nothing, or prompt an end-user for an action.
Examples
This example demonstrates how to specify basic characteristics of the Scheduler control 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>