Skip to main content

ASPxRichEdit.DocumentSelectorItemDeleting Event

Fires before an item is deleted within the FileManager embedded into built-in file dialogs, and allows you to cancel the action.

Namespace: DevExpress.Web.ASPxRichEdit

Assembly: DevExpress.Web.ASPxRichEdit.v24.2.dll

NuGet Package: DevExpress.Web.Office

#Declaration

public event FileManagerItemDeleteEventHandler DocumentSelectorItemDeleting

#Event Data

The DocumentSelectorItemDeleting 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 FileManager used within certain built-in file dialogs, the DocumentSelectorItemDeleting event occurs, allowing you to cancel the action.

See Also