SchedulerControl.ShowEditAppointmentForm(Appointment) Method
Invokes the Edit Appointment dialog for the specified appointment.
Namespace: DevExpress.Xpf.Scheduler
Assembly: DevExpress.Xpf.Scheduler.v14.2.dll
Declaration
public virtual void ShowEditAppointmentForm(
Appointment apt
)
Public Overridable Sub ShowEditAppointmentForm(
apt As Appointment
)
Parameters
| Name | Type | Description |
|---|---|---|
| apt | Appointment | A Appointment object which is the appointment to be edited in the dialog. |
Remarks
The Edit Appointment dialog allows end-users to change the properties of any appointment. The common appearance of the standard Edit Appointment form is shown below.

Use the SchedulerControl.EditAppointmentFormShowing event to handle the display of this form, for example, to invoke your own custom form instead of the standard one.
See Also