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

TdxCloudStorageItemPermissions.FindByID(string) Method

Returns a stored access permission by its unique identifier.

#Declaration

Delphi
function FindByID(const AID: string): TdxCloudStorageItemPermission;

#Parameters

Name Type Description
AID string

A unique identifier of a file or folder in a cloud storage.

#Returns

Type Description
TdxCloudStorageItemPermission

A permission to access or edit a file or folder in a cloud storage.

#Remarks

Call this function and pass an ID of a storage item’s access permission as the AID parameter to access this permission. The FindByID function returns nil (in Delphi) or nullptr/NULL (in C++Builder) if the collection does not store an access permission with the specified identifier.

Note

Call the FetchAll procedure to retrieve or refresh the list of access permissions for a file or folder.

See Also