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

Declaration

public RecurrentAppointmentAction RecurrentAppointmentDeleteAction { get; set; }
Public Property RecurrentAppointmentDeleteAction As RecurrentAppointmentAction

Property Value

Type Description
RecurrentAppointmentAction

A RecurrentAppointmentAction enumeration value that specifies an action type.

Property Paths

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

Object Type Path to RecurrentAppointmentDeleteAction
SchedulerControl
.OptionsBehavior.RecurrentAppointmentDeleteAction

Remarks

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