Back to Devexpress

SchedulerDataStorage.AppointmentDeleting Event

windowsforms-devexpress-dot-xtrascheduler-dot-schedulerdatastorage-29526a38.md

latest4.0 KB
Original Source

SchedulerDataStorage.AppointmentDeleting Event

Allows you to cancel the deletion of an appointment.

Namespace : DevExpress.XtraScheduler

Assembly : DevExpress.XtraScheduler.v25.2.dll

NuGet Package : DevExpress.Win.Scheduler

Declaration

csharp
public event PersistentObjectCancelEventHandler AppointmentDeleting
vb
Public Event AppointmentDeleting As PersistentObjectCancelEventHandler

Event Data

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

PropertyDescription
CancelGets or sets whether to cancel the operation.
ObjectGets 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.

winforms-scheduler-linq-to-sql/CS/XtraScheduler_LINQ/Form1.cs#L46

csharp
this.schedulerStorage1.AppointmentsInserted += OnSchedulerStorage1AppointmentsInserted;
    this.schedulerStorage1.AppointmentDeleting += OnSchedulerStorage1AppointmentDeleting;
}

winforms-scheduler-linq-to-sql/VB/XtraScheduler_LINQ/Form1.vb#L48

vb
AddHandler schedulerStorage1.AppointmentsInserted, AddressOf OnSchedulerStorage1AppointmentsInserted
    AddHandler schedulerStorage1.AppointmentDeleting, AddressOf OnSchedulerStorage1AppointmentDeleting
End Sub

See Also

AppointmentsDeleted

AllowAppointmentDelete

SchedulerDataStorage Class

SchedulerDataStorage Members

DevExpress.XtraScheduler Namespace