SchedulerControl.DeleteRecurrentAppointmentFormShowing Event
Occurs before the Confirm Delete form is invoked.
Namespace: DevExpress.Xpf.Scheduler
Assembly: DevExpress.Xpf.Scheduler.v14.2.dll
Declaration
public event DeleteRecurrentAppointmentFormEventHandler DeleteRecurrentAppointmentFormShowing
Public Event DeleteRecurrentAppointmentFormShowing As DeleteRecurrentAppointmentFormEventHandler
Event Data
The DeleteRecurrentAppointmentFormShowing event's handler receives an argument of the DeleteRecurrentAppointmentFormEventArgs type. The following properties provide information specific to this event:
| Property | Description |
|---|---|
| AllowResize | Gets or sets a value indicating whether end-users are allowed to resize the form. Inherited from FormShowingEventArgs. |
| Appointments | Gets the collection of appointments for which the dialog will be shown. |
| Cancel | Gets or sets the value indicating whether to cancel invoking the form. Inherited from FormShowingEventArgs. |
| Form | Gets or sets the form to be invoked. Inherited from FormShowingEventArgs. |
| SizeToContent | Obsolete. This API is obsolete now. Inherited from FormShowingEventArgs. |
| ViewModel | Gets or sets the View Model for the form which will be invoked. Inherited from FormShowingEventArgs. |
Remarks
Handle the DeleteRecurrentAppointmentFormShowing event to perform any actions before the Confirm Delete dialog is shown. For instance, a custom dialog can be substituted in place of the standard dialog.
The Confirm Delete dialog is illustrated below:

See Also