Skip to main content

OptionsBehavior.RecurrentAppointmentEditAction Property

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

Namespace: DevExpress.Xpf.Scheduler

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

#Declaration

public RecurrentAppointmentAction RecurrentAppointmentEditAction { get; set; }

#Property Value

Type Description
RecurrentAppointmentAction

A RecurrentAppointmentAction enumeration value that specifies an action type.

#Property Paths

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

Object Type Path to RecurrentAppointmentEditAction
SchedulerControl
.OptionsBehavior.RecurrentAppointmentEditAction

#Remarks

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.

#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