Skip to main content

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.v23.2.dll

NuGet Package: DevExpress.Wpf.Scheduler

Declaration

public RecurrentAppointmentAction RecurrentAppointmentDeleteAction { get; set; }

Property Value

Type Description
RecurrentAppointmentAction

A RecurrentAppointmentAction enumeration value that is the type of an action.

Available values:

Name Description
Cancel

Cancels the action.

Series

Performs an operation on the entire series.

Occurrence

Performs an operation on a selected occurrence only.

Ask

The user is prompted to carry out an operation on selected occurrences only, or the entire series.

Property Paths

You can access this nested property as listed below:

Object Type Path to RecurrentAppointmentDeleteAction
SchedulerControl
.OptionsBehavior .RecurrentAppointmentDeleteAction

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.

Example

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