Back to Devexpress

ASPxFileManager.ItemCopying Event

aspnet-devexpress-dot-web-dot-aspxfilemanager-e9e620bd.md

latest3.0 KB
Original Source

ASPxFileManager.ItemCopying Event

Fires on the server side before an item is copied and allows you to cancel the action.

Namespace : DevExpress.Web

Assembly : DevExpress.Web.v25.2.dll

NuGet Package : DevExpress.Web

Declaration

csharp
public event FileManagerItemCopyEventHandler ItemCopying
vb
Public Event ItemCopying As FileManagerItemCopyEventHandler

Event Data

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

PropertyDescription
CancelGets or sets a value indicating whether the action that raised the event should be canceled. Inherited from FileManagerActionEventArgsBase.
DestinationFolderGets a folder where the current item is being copied.
ErrorTextGets or sets a text for the explanatory message. Inherited from FileManagerActionEventArgsBase.
ItemGets an item object related to the event.

Remarks

Each time an item is going to be copied on the server side, the ItemCopying event occurs, allowing you to cancel the item copy. The event parameter’s FileManagerItemCopyEventArgs.Item property identifies the item that is being processed. The new location of an item can be obtained via the FileManagerItemCopyEventArgs.DestinationFolder property. To cancel the copy operation, set the FileManagerActionEventArgsBase.Cancel property to true. In order to show the message, explaining the reason for the copy cancellation, specify the FileManagerActionEventArgsBase.ErrorText property.

See Also

ItemCopying

AllowCopy

Copy Button

File Manager

ASPxFileManager Class

ASPxFileManager Members

DevExpress.Web Namespace