Skip to main content

ASPxSchedulerDataWebControlBase.ResourcesInserted Event

Occurs when new resources are inserted into the ResourceBaseCollection collection.

Namespace: DevExpress.Web.ASPxScheduler

Assembly: DevExpress.Web.ASPxScheduler.v23.2.dll

NuGet Package: DevExpress.Web.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 resources have been added to the collection. The event parameter’s PersistentObjectsEventArgs.Objects property allows you to get the resources which have been added.

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

See Also