Skip to main content

SchedulerDataStorage.AppointmentDeleting Event

Allows you to cancel the deletion of an appointment.

Namespace: DevExpress.XtraScheduler

Assembly: DevExpress.XtraScheduler.v23.2.dll

NuGet Package: DevExpress.Win.Scheduler

Declaration

public event PersistentObjectCancelEventHandler AppointmentDeleting

Event Data

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

Property Description
Cancel Gets or sets whether to cancel the operation.
Object Gets the persistent object (appointment, resource or appointment dependency) for which the event occurs. Inherited from PersistentObjectEventArgs.

Remarks

The AppointmentDeleting event is raised before an appointment is deleted and allows you to cancel the deletion of an appointment. The event parameter’s PersistentObjectEventArgs.Object property allows the processed appointment to be identified. To prevent it from being deleted, set the PersistentObjectCancelEventArgs.Cancel property to true.

Important

Do not modify a persistent object for which the event is raised in the event handler’s code.

The following code snippet (auto-collected from DevExpress Examples) contains a reference to the AppointmentDeleting event.

Note

The algorithm used to collect these code examples remains a work in progress. Accordingly, the links and snippets below may produce inaccurate results. If you encounter an issue with code examples below, please use the feedback form on this page to report the issue.

See Also