Group

public class Group

The Group object provides general information about an IYOPRO Usergroup.

 Properties

string Name

The name of the group

ReadOnlyCollection<User> Users

The users in the group

Examples

This example shows all usergroups in the workflow team.

for group in Workflow.Groups:
   print group.Name

This example shows all user in the group 'Administrators'.

group = Workflow.Groups.GetGroup("Administrators")

for user in group.Users:
   print user.Name