Skip to main content

MVCxHtmlEditorVideoSelectorSettings.ItemMoving Property

Enables you to perform custom actions before an item is moved in the Video Selector, and allows you to cancel the action.

Namespace: DevExpress.Web.Mvc

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

NuGet Package: DevExpress.Web.Mvc5

Declaration

public FileManagerItemMoveEventHandler ItemMoving { get; set; }

Property Value

Type Description
FileManagerItemMoveEventHandler

An FileManagerItemMoveEventHandler delegate method allowing you to implement custom processing.

Property Paths

You can access this nested property as listed below:

Object Type Path to ItemMoving
MVCxHtmlEditorInsertVideoDialogSettings
.SettingsVideoSelector .ItemMoving

Remarks

The delegate method parameter’s FileManagerItemMoveEventArgs.Item property identifies the item that is being processed. The new location of an item can be obtained using the FileManagerItemMoveEventArgs.DestinationFolder property. To cancel the moving operation, set the FileManagerActionEventArgsBase.Cancel property to true. To show a message explaining the reason for cancelling the move, specify the FileManagerActionEventArgsBase.ErrorText property.

See Also