GetAllGroupPermissions

Description

Returns the applied and effective permissions for all known groups on the folder. The return value contains a triplet of three strings for each group known to the user. The first string in each triplet is the group name, the second and third strings are the applied and effective permission kinds for that group. If there is no applied permission, that String value is empty. If there are multiple applied permissions (for a ChangePermission and another applied permission), all permission kinds are returned as one string, with a tab character separating the individual kinds. When the kindAsName argument is set to False, the permission kinds are returned in numeric form.

Note: This method became available in version 7.1.0.

Syntax

VBScript


folder.GetAllGroupPermissions kindAsName

Perl


$folder->GetAllGroupPermissions(kindAsName); 
Identifier
Description
folder
A Folder object obtained from the current workspace.
kindAsName
A Bool that specifies whether or not to list the permissions by name or number. Set to True for name; False for number.
Return value
For Visual Basic, Returns a Variant containing an array whose elements are strings. Each String contains the name of a permission kind by name or by number, depending on the value set for the kindAsName argument. For Perl, a reference to an array of strings. Each String in the array contains the name or number of a permission.