ASPxRichEdit.DocumentSelectorItemRenaming Event
In This Article
Fires before an item is renamed 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 FileManagerItemRenameEventHandler DocumentSelectorItemRenaming
#Event Data
The DocumentSelectorItemRenaming event's data class is FileManagerItemRenameEventArgs. 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 File |
Error |
Gets or sets a text for the explanatory message.
Inherited from File |
Item | Gets an item object related to the event. |
New |
Gets a new name for the item currently being renamed. |
#Remarks
Each time an item is going to be renamed within the FileManager used within built-in file dialogs, the DocumentSelectorItemRenaming event occurs, allowing you to cancel the action.
See Also