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

In This Article

Notifies that a file update process has successfully finished.

#Declaration

Delphi
property OnFileContentUploaded: TFileContentUploadedEvent read; write;

#Remarks

The OnFileContentUploading and OnFileContentUploaded events occur at the start and successful finish of a file update process, respectively. If an attempt to update a stored file from the local source results in an error, the OnError event occurs after OnFileContentUploading. Call a stored file metadata container‘s UploadContent procedure to update the corresponding file from the source local data stream.

For instance, you can handle this event to indicate that your application has successfully updated a file on the connected online storage service’s server. Refer to the TFileContentUploadedEvent nested procedural type description for details on all parameters accessible within an OnFileContentUpdated event handler.

Note

Handle the OnFileContentUpload event to track the progress of the active file update process.

See Also