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

In This Article

Notifies of the successful finish of a file download process.

#Declaration

Delphi
property OnItemDownloaded: TItemDownloadedEvent 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 from the connected online storage’s server resulted in an error, the OnError event occurs instead of OnItemDownloaded.

Handle this event to obtain a stream with the downloaded file’s content by reading the AStream parameter. Then, you can load the file into a control that displays and/or edits such files. Refer to the TItemDownloadedEvent nested type description for details on all parameters accessible within an OnItemDownloaded event handler.

Note

Handle the OnItemDownload event to track the progress of the active file download process.

See Also