Skip to main content

SchedulerControl.ShowEditRecurrentAppointmentForm(Appointment, Boolean) Method

Invokes the Open Recurring Item form which prompts an end-user for an action while editing the recurrent appointment.

Namespace: DevExpress.Xpf.Scheduler

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

#Declaration

public virtual void ShowEditRecurrentAppointmentForm(
    Appointment appointment,
    bool readOnly
)

#Parameters

Name Type Description
appointment Appointment

An Appointment object that specifies a simple Occurrence or an exception (ChangedOccurrence or DeletedOccurrence) for which the edit command is processed.

readOnly Boolean

true to open the Edit Appointment and Appointment Recurrence form displaying properties of a read-only appointment (in this case all form editors are disabled); otherwise, false.

#Remarks

The default Open Recurring Item dialog is illustrated below.

DXScheduler_OpenRecurringItemDialog

Use the SchedulerControl.EditRecurrentAppointmentFormShowing event to handle the display of this form; for example, to invoke your own custom dialog instead of the default form.

See Also