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

In This Article

Notifies of the successful finish of a file upload process.

#Declaration

Delphi
property OnItemUploaded: TItemUploadedEvent read; write;

#Remarks

The OnItemUploading and OnItemUploaded events occur at the start and successful finish of a file upload process, respectively. If an attempt to upload a local file to the connected online storage’s server resulted in an error, the OnError event occurs instead of OnItemUploaded. Call a cloud folder metadata container‘s UploadFile procedure to start uploading a file into the corresponding folder on the connected online storage’s server.

For instance, you can handle this event to populate the list of files that are successfully uploaded during a connection session. Refer to the TItemUploadedEvent nested type description for details on all parameters accessible within an OnItemUploaded event handler.

Note

Handle the OnItemUpload event to track the progress of the active file upload process.

See Also