Skip to main content
.NET 6.0+

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