Back to Devexpress

ASPxFileManager.ItemDeleting Event

aspnet-devexpress-dot-web-dot-aspxfilemanager-78a504ea.md

latest2.7 KB
Original Source

ASPxFileManager.ItemDeleting Event

Fires on the server side before an item is deleted and allows you to cancel the action.

Namespace : DevExpress.Web

Assembly : DevExpress.Web.v25.2.dll

NuGet Package : DevExpress.Web

Declaration

csharp
public event FileManagerItemDeleteEventHandler ItemDeleting
vb
Public Event ItemDeleting As FileManagerItemDeleteEventHandler

Event Data

The ItemDeleting event's data class is FileManagerItemDeleteEventArgs. The following properties provide information specific to this event:

PropertyDescription
CancelGets or sets a value indicating whether the action that raised the event should be canceled. Inherited from FileManagerActionEventArgsBase.
ErrorTextGets or sets a text for the explanatory message. Inherited from FileManagerActionEventArgsBase.
ItemGets an item object related to the event.

Remarks

Each time an item is going to be deleted on the server side, the ItemDeleting 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. In order to show the message, explaining the reason for the delete cancellation, specify the FileManagerActionEventArgsBase.ErrorText property.

See Also

ItemDeleting

AllowDelete

Delete Button

File Manager

ASPxFileManager Class

ASPxFileManager Members

DevExpress.Web Namespace