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

ASPxFileManager.ItemsDeleted Event

Occurs on the server side after all the selected items have been deleted.

Namespace: DevExpress.Web

Assembly: DevExpress.Web.v19.2.dll

Declaration

public event FileManagerItemsDeletedEventHandler ItemsDeleted

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