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.OnItemDownloading Event

In This Article

Enables you to perform specific actions in response to downloading a file from the connected online storage’s server.

#Declaration

Delphi
property OnItemDownloading: TItemDownloadingEvent read; write;

#Remarks

The OnItemDownloading and OnItemDownloaded events occur at the start and successful finish of a file download process, respectively. If an attempt to download a file results in an error, the OnError event occurs after OnItemDownloading.

You can handle this event to mark the visual representation of the currently downloaded file in your application’s UI, indicating the file’s status, and optionally, obtain the file’s total size (in bytes) if an online storage’s server provides this information. Refer to the TItemDownloadingEvent nested type description for details on all parameters accessible within an OnItemDownloading event handler.

Note

Handle the OnItemDownload and OnItemDownloaded events to track the progress of the download process and obtain/save a successfully downloaded file.

See Also