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

In This Article

Enables you to perform specific actions in response to updating an existing file stored on the connected online storage’s server.

#Declaration

Delphi
property OnFileContentUploading: TFileContentUploadingEvent 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 data stream.

You can handle this event to mark the visual representation of the currently updated file in your application’s UI, indicating the file’s status, and optionally, obtain the updated file’s total size (in bytes). Refer to the TFileContentUploadingEvent nested type description for details on all parameters accessible within an OnFileContentUploading event handler.

Note

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

See Also