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

FileManagerSettings.ItemsMoved Property

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

Namespace: DevExpress.Web.Mvc

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

Declaration

public FileManagerItemsMovedEventHandler ItemsMoved { get; set; }

Property Value

Type Description
FileManagerItemsMovedEventHandler

A FileManagerItemsMovedEventHandler delegate method allowing you to implement custom processing.

Remarks

Implement a FileManagerItemsMovedEventHandler delegate method and assign it to the ItemsMoved property to perform custom actions after all selected items have been moved. The delegate method parameter’s FileManagerItemsMovedEventArgs.Items property gets an array of moved items. The FileManagerItemsMovedEventArgs.SourceFolder property gets the full name of the folder from which the items have been moved.

To specify if a file can be uploaded and cancel the action, use the FileManagerSettings.ItemMoving property.

See Also