Group

Parent Previous Next

The Group object provides general information about an IYOPRO Usergroup. These are:


Syntax

       public class Group


Members

string Name

The name of the group

ReadOnlyCollection<User> Users

The users in the group



Sample

This sample shows all usergroups in the workflow team


for group in Workflow.Groups:

   print group.Name



This sample shows all user in the group 'Administrators'


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

for user in group.Users:

   print user.Name