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

FileManagerSettings.ItemsCopied Property

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

Namespace: DevExpress.Web.Mvc

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

Declaration

public FileManagerItemsCopiedEventHandler ItemsCopied { get; set; }

Property Value

Type Description
FileManagerItemsCopiedEventHandler

A FileManagerItemsCopiedEventHandler delegate method allowing you to implement custom processing.

Remarks

Implement a FileManagerItemsCopiedEventHandler delegate method and assign it to the ItemsCopied property to perform custom actions after copying of all selected items has been completed. The delegate method parameter’s FileManagerItemsCopiedEventArgs.Items property gets an array of copied items. The FileManagerItemsCopiedEventArgs.SourceFolder property get a full name of the folder from which the items have been copied.

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

See Also