Fires before an item is moved within the Audio Selector, and allows you to cancel the action.
Namespace: DevExpress.Web.ASPxHtmlEditor
Assembly: DevExpress.Web.ASPxHtmlEditor.v19.2.dll
public event FileManagerItemMoveEventHandler AudioSelectorItemMoving
Public Event AudioSelectorItemMoving As FileManagerItemMoveEventHandler
The AudioSelectorItemMoving event handler receives an argument of the FileManagerItemMoveEventArgs type. The following properties provide information specific to this event.
Property | Description |
---|---|
Cancel |
Gets or sets a value indicating whether the action that raised the event should be canceled.
(Inherited from FileManagerActionEventArgsBase)
|
DestinationFolder | Gets a folder where the current item is being moved. |
ErrorText |
Gets or sets a text for the explanatory message.
(Inherited from FileManagerActionEventArgsBase)
|
Item | Gets an item object related to the event. |
Each time an item is going to be moved within the Audio Selector, the AudioSelectorItemMoving event occurs, allowing you to cancel the item move. The event 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.
To customize the Audio Selector settings use the HtmlEditorInsertAudioDialogSettings.SettingsAudioSelector property.