Skip to main content

ISchedulerStorageBase.AppointmentDependenciesInserted Event

Fires after one or several appointment dependencies have been added to the storage.

Namespace: DevExpress.XtraScheduler

Assembly: DevExpress.XtraScheduler.v23.2.Core.dll

NuGet Package: DevExpress.Scheduler.Core

Declaration

event PersistentObjectsEventHandler AppointmentDependenciesInserted

Event Data

The AppointmentDependenciesInserted 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 AppointmentDependenciesInserted event serves as a notification that appointment dependencies have been added. The event parameter’s PersistentObjectEventArgs.Object property allows you to get the inserted dependencies. To access the dependencies, you must cast the e.Object to the AppointmentBaseCollection type.

To validate insertion, or decide whether a dependency can be added, handle the SchedulerStorageBase.AppointmentDependencyInserting event.

See Also