FileManagerSettings.ItemsDeleted Property
In This Article
Allows you to perform custom actions after all the selected items have been deleted.
Namespace: DevExpress.Web.Mvc
Assembly: DevExpress.Web.Mvc5.v24.2.dll
NuGet Package: DevExpress.Web.Mvc5
#Declaration
public FileManagerItemsDeletedEventHandler ItemsDeleted { get; set; }
#Property Value
Type | Description |
---|---|
File |
A File |
#Remarks
Implement a FileManagerItemsDeletedEventHandler delegate method and assign it to the ItemsDeleted property to perform custom actions after all the selected items have been deleted. The delegate method parameter’s FileManagerItemsDeletedEventArgs.Items property gets an array of deleted items.
To specify if a file can be deleted and cancel the action, use the FileManagerSettings.ItemDeleting property.
See Also