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.TFileContentUploadedEvent Type

The nested procedural type of the existing file update success notification event.

#Declaration

Delphi
TFileContentUploadedEvent = procedure(Sender: TObject; const AFile: TdxCloudStorageFile) of object;

#Parameters

Name Type Description
Sender TObject

The cloud storage component that successfully updated a file.

AFile TdxCloudStorageFile

The metadata container that corresponds to the updated file.

#Remarks

The Sender parameter provides access to the cloud storage component that raised the notification event when a file update operation succeeds. To access the cloud storage component’s class members within a TFileContentUploadedEvent event handler, cast the parameter value to the TdxCloudStorage class.

The AFile parameter provides access to the cloud file metadata container that corresponds to the existing file that has been successfully updated.

The OnFileContentUploaded event references the TFileContentUploadedEvent nested procedural type.

See Also