ASPxFileManager.ItemsDeleted Event
Occurs on the server side after all the selected items have been deleted.
Namespace: DevExpress.Web
Assembly: DevExpress.Web.v24.1.dll
NuGet Package: DevExpress.Web
Declaration
Event Data
The ItemsDeleted event's data class is FileManagerItemsDeletedEventArgs. The following properties provide information specific to this event:
Property | Description |
---|---|
Items | Gets items related to the event. |
Remarks
The ItemsDeleted event serves as a notification that all selected items have been deleted. You can use the FileManagerItemsDeletedEventArgs.Items event parameter to get an array of deleted items.
To specify whether an item can be deleted and cancel the action, handle the ASPxFileManager.ItemDeleting event.
See Also