Skip to main content

SchedulerDataStorage.ResourcesInserted Event

Occurs when new resources are inserted into the scheduler storage.

Namespace: DevExpress.XtraScheduler

Assembly: DevExpress.XtraScheduler.v23.2.dll

NuGet Package: DevExpress.Win.Scheduler

Declaration

public event PersistentObjectsEventHandler ResourcesInserted

Event Data

The ResourcesInserted 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 ResourcesInserted event serves as a notification that a resource appointment has been added to the resources collection. The event parameter’s PersistentObjectEventArgs.Object property allows you to get the resource which has been added.

To specify whether a resource can be added, handle the SchedulerDataStorage.ResourceInserting event.

See Also