Skip to main content

ASPxSchedulerDataWebControlBase.AppointmentsDeleted Event

Fires after you delete an appointment.

Namespace: DevExpress.Web.ASPxScheduler

Assembly: DevExpress.Web.ASPxScheduler.v23.2.dll

NuGet Package: DevExpress.Web.Scheduler

Declaration

public event PersistentObjectsEventHandler AppointmentsDeleted

Event Data

The AppointmentsDeleted event's data class is PersistentObjectsEventArgs. The following properties provide information specific to this event:

Property Description
Objects Gets the persistent objects for which the event occurs.

Remarks

The AppointmentsDeleted event serves as a notification that an appointment has been deleted. The event parameter’s PersistentObjectEventArgs.Object property allows you to get the deleted appointment.

Note

The control raises the AppointmentsDeleted event for each of the deleted appointments.

Tip

To cancel appointment deletion, handle the ASPxSchedulerDataWebControlBase.AppointmentDeleting event.

See Also