Skip to main content
A newer version of this page is available. .

SchedulerStorageBase.ResourcesInserted Event

Occurs when new resources are inserted into the scheduler storage.

Namespace: DevExpress.XtraScheduler

Assembly: DevExpress.XtraScheduler.v18.1.Core.dll

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 SchedulerStorageBase.ResourceInserting event.

The following code snippet (auto-collected from DevExpress Examples) contains a reference to the ResourcesInserted 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.

Implements

See Also