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

ASPxHtmlEditor.VideoSelectorItemDeleting Event

Fires before an item is deleted within the Video Selector, and allows you to cancel the action.

Namespace: DevExpress.Web.ASPxHtmlEditor

Assembly: DevExpress.Web.ASPxHtmlEditor.v20.2.dll

NuGet Package: DevExpress.Web

Declaration

public event FileManagerItemDeleteEventHandler VideoSelectorItemDeleting

Event Data

The VideoSelectorItemDeleting event's data class is FileManagerItemDeleteEventArgs. 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.
ErrorText Gets or sets a text for the explanatory message. Inherited from FileManagerActionEventArgsBase.
Item Gets an item object related to the event.

Remarks

Each time an item is going to be deleted within the Video Selector, the VideoSelectorItemDeleting event occurs, allowing you to cancel the action. The event parameter’s FileManagerItemDeleteEventArgs.Item property identifies the item that is being processed. To cancel the delete operation, set the FileManagerActionEventArgsBase.Cancel property to true. To show a message explaining the reason for canceling the delete operation, specify the FileManagerActionEventArgsBase.ErrorText property.

To customize the Video Selector settings use the HtmlEditorInsertVideoDialogSettings.SettingsVideoSelector property.

See Also