Skip to main content

SchedulerControl.ShowEditRecurrentAppointmentForm(Appointment) Method

Invokes the dialog window which prompts the user for an action on editing the recurrent appointment.

Namespace: DevExpress.XtraScheduler

Assembly: DevExpress.XtraScheduler.v23.2.dll

NuGet Package: DevExpress.Win.Scheduler

Declaration

public virtual RecurrentAppointmentAction ShowEditRecurrentAppointmentForm(
    Appointment apt
)

Parameters

Name Type Description
apt Appointment

An Appointment for which the delete command is processed.

Returns

Type Description
RecurrentAppointmentAction

A RecurrentAppointmentAction enumeration value, specifying the type of action being performed.

Remarks

The ShowEditRecurrentAppointmentForm method raises the SchedulerControl.EditRecurrentAppointmentFormShowing event. If the event’s handler sets the ShowFormEventArgs.Handled property to true, then the default dialog window is not invoked, and the return value is calculated from the QueryResult property of the event parameter.

The default dialog window is illustrated below:

RecurrenceEditDialog

See Also