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

FileManagerSettings.ItemsDeleted Property

Allows you to perform custom actions after all the selected items have been deleted.

Namespace: DevExpress.Web.Mvc

Assembly: DevExpress.Web.Mvc5.v19.2.dll

Declaration

public FileManagerItemsDeletedEventHandler ItemsDeleted { get; set; }

Property Value

Type Description
FileManagerItemsDeletedEventHandler

A FileManagerItemsDeletedEventHandler delegate method allowing you to implement custom processing.

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