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

ASPxClientFileManager.ItemsCopied Event

Occurs on the client side after all the selected items have been copied.

Declaration

ItemsCopied: ASPxClientEvent<ASPxClientFileManagerItemsCopiedEventHandler<ASPxClientFileManager>>

Event Data

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

Property Description
items Gets an array of the currently processed items.
oldFolderFullName Gets the full name of the folder from which items are copied.

Remarks

The ItemsCopied event serves as a notification that all selected items have been copied. The ItemsCopied event is generated after the ASPxClientFileManager.ItemCopied events related to all copied items have been fired.

You can use the event parameter’s properties to get an array of copied items (ASPxClientFileManagerItemsCopiedEventArgs.items) or get the full name of the folder from which the items have been copied (ASPxClientFileManagerItemCopiedEventArgs.oldFolderFullName).

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

See Also