Skip to main content

ASPxSchedulerDataWebControlBase.ResourcesDeleted Event

Occurs when a scheduler’s resource is deleted from the collection.

Namespace: DevExpress.Web.ASPxScheduler

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

NuGet Package: DevExpress.Web.Scheduler

Declaration

public event PersistentObjectsEventHandler ResourcesDeleted

Event Data

The ResourcesDeleted 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 ResourcesDeleted event serves as a notification that a resource has been deleted. The event parameter’s PersistentObjectsEventArgs.Objects property allows you to get the resources which have been deleted.

To specify whether a resource can be deleted, handle the ASPxSchedulerDataWebControlBase.ResourceDeleting event.

See Also