Skip to main content

DevExpress v24.2 Update — Your Feedback Matters

Our What's New in v24.2 webpage includes product-specific surveys. Your response to our survey questions will help us measure product satisfaction for features released in this major update and help us refine our plans for our next major release.

Take the survey Not interested

TdxCloudStorage.OnItemDeleted Event

In This Article

Enables you to respond to a successful online resource delete operation.

#Declaration

Delphi
property OnItemDeleted: TItemChangedEvent read; write;

#Remarks

This event occurs every time a cloud storage metadata container‘s Delete procedure call destroys the corresponding file or folder within the cloud file storage. If an attempt to delete a file or folder results in an error, the OnError event occurs instead.

For instance, you can handle the OnItemDeleted event to indicate that a file or folder has been irreversibly removed from the file storage. Refer to the TItemChangedEvent nested type description for information on parameters accessible within an OnItemDeleted event handler.

Note

An attempt to delete the cloud storage root or any special folder raises an exception rather than the OnError event.

See Also