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

In This Article

Enables you to track created access permissions.

#Declaration

Delphi
property OnItemPermissionCreated: TItemPermissionChangedEvent read; write;

#Remarks

This event occurs every time a metadata container‘s Permissions.InviteUsers or Permissions.CreateSharedLink procedure successfully creates a permission to view or edit the corresponding file or folder. The InviteUsers procedure can create multiple access permissions, and therefore, raise the OnItemPermissionCreated event multiple times per single call.

You can handle this event to notify an end user that a new permission is successfully created. Refer to the TItemPermissionChangedEvent nested type description for details on parameters accessible within an OnItemPermissionCreated event handler.

See Also