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

ASPxFileManager.ItemsCopied Event

Occurs on the server side after copying of all selected items has been completed.

Namespace: DevExpress.Web

Assembly: DevExpress.Web.v19.1.dll

Declaration

public event FileManagerItemsCopiedEventHandler ItemsCopied

Event Data

The ItemsCopied event's data class is FileManagerItemsCopiedEventArgs. The following properties provide information specific to this event:

Property Description
Items Gets items related to the event.
SourceFolder Gets the folder from which the currently processed items have been copied.

Remarks

The ItemsCopied event serves as a notification that all selected items have been copied. You can use the event parameter’s properties to gets an array of copied items (FileManagerItemsCopiedEventArgs.Items) or get the full name of the folder from which the items have been copied (FileManagerItemsCopiedEventArgs.SourceFolder).

To specify whether an item can be copied and cancel the action, handle the ASPxFileManager.ItemCopying event.

See Also