Skip to main content
Tab

ASPxFileManager.ItemsMoved Event

Occurs on the server side after all the selected items have been moved.

Namespace: DevExpress.Web

Assembly: DevExpress.Web.v23.2.dll

NuGet Package: DevExpress.Web

Declaration

public event FileManagerItemsMovedEventHandler ItemsMoved

Event Data

The ItemsMoved event's data class is FileManagerItemsMovedEventArgs. 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 moved.

Remarks

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

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

See Also