Skip to main content
A newer version of this page is available. .

OptionsBehavior.RecurrentAppointmentEditAction Property

Gets or sets a type of action being performed when a command is issued to edit a recurrent appointment.

Namespace: DevExpress.Xpf.Scheduler

Assembly: DevExpress.Xpf.Scheduler.v19.2.dll

Declaration

public RecurrentAppointmentAction RecurrentAppointmentEditAction { get; set; }

Property Value

Type Description
RecurrentAppointmentAction

A RecurrentAppointmentAction enumeration value that specifies an action type.

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 RecurrentAppointmentEditAction
SchedulerControl
.OptionsBehavior.RecurrentAppointmentEditAction

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 RecurrentAppointmentEditAction property to specify whether the edit command should open the Edit Appointment dialog for editing 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