UsersOfGroup
This function finds all users that are in specified group.
Syntax
UsersOfGroup("groupName");
Function arguments
- groupName – (String) The name of the group from which users are to be retrived
Return value
This function returns String.
Returns logins of the users that are in specified group, separated by comma ’,’. If there are no users in specified group, an empty string is returned.
Examples
Example 1:
This will get all users login’s that are in 'Examplary Group’.
userList = UsersOfGroup("Examplary Group");