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

The nested procedural type of access permission change events.

#Declaration

Delphi
TItemPermissionChangedEvent = procedure(Sender: TObject; const APermission: TdxCloudStorageItemPermission) of object;

#Parameters

Name Type Description
Sender TObject

The cloud storage component that changed an access permission.

APermission TdxCloudStorageItemPermission

The changed access permission.

#Remarks

The Sender parameter provides access to the cloud storage component that raised the access permission change event. To access the component’s class members within a TItemPermissionChangedEvent event handler, cast the parameter value to the TdxCloudStorage class.

The APermission parameter provides access to the changed access permission. Refer to the TdxCloudStorageItemPermission class description for detailed information on available options.

The OnItemPermissionCreated and OnItemPermissionDeleted events reference the TItemPermissionChangedEvent nested procedural type.

Note

An attempt to manage access permissions for root or any special folder always results in an exception that displays the corresponding message box.

See Also