Skip to main content
A newer version of this page is available. .
.NET Framework 4.5.2+
  • The page you are viewing does not exist in the .NET Standard 2.0+ platform documentation. This link will take you to the parent topic of the current section.

IModelOptionsScheduler.RecurrentAppointmentEditAction Property

Specifies the action that will be performed when double-clicking a recurrent event.

Namespace: DevExpress.ExpressApp.Scheduler.Win

Assembly: DevExpress.ExpressApp.Scheduler.Win.v19.2.dll

Declaration

[DefaultValue(RecurrentAppointmentAction.Ask)]
RecurrentAppointmentAction RecurrentAppointmentEditAction { get; set; }

Property Value

Type Default Description
RecurrentAppointmentAction **Ask**

A RecurrentAppointmentAction enumeration value specifying the action that will be performed when double-clicking a recurrent event.

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
IModelOptionsSchedulerModule
.SchedulerModule.RecurrentAppointmentEditAction

Remarks

This property is considered in Windows Forms applications.

The following values are possible:

  • Ask - in the invoked dialog, you can choose whether to open a Detail View with the current occurrence or the entire series.
  • Cancel - nothing is invoked.
  • Occurrence - a Detail View representing the current occurrence is invoked.
  • Series - a Detail View representing the entire series is invoked.
See Also