Skip to main content
A newer version of this page is available. .

SchedulerControl.ShowDeleteRecurrentAppointmentForm(Appointment) Method

Invokes the confirmation dialog for the specified recurrent appointment.

Namespace: DevExpress.XtraScheduler

Assembly: DevExpress.XtraScheduler.v18.2.dll

Declaration

public virtual RecurrentAppointmentAction ShowDeleteRecurrentAppointmentForm(
    Appointment apt
)

Parameters

Name Type Description
apt Appointment

An Appointment object that is the appointment to delete.

Returns

Type Description
RecurrentAppointmentAction

A RecurrentAppointmentAction enumeration member that specifies the return value of the dialog.

Remarks

This dialog is invoked for recurrent appointments only, and allows end-users to specify whether the entire series to which the appointment belongs shall be deleted, or only the specified appointment. The common appearance of the standard Confirm Delete dialog is shown in the image below.

DeleteRecurrentAppointments Dialog

Tip

Use the SchedulerControl.DeleteRecurrentAppointmentFormShowing event to handle the dialog display, and to invoke your own custom dialog instead of the standard one.

See Also