Groups

public class Groups

The Groups object groups objects of type Group together. Invocation via the Workflow object.

 Properties

int Count

The number of records in the list

 Methods

Group GetGroup(string name)

Get the record of the given group name

Example

This example retrieves the administrators group.

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

also possible:

admingroup = Workflow.Groups["Administrators"]

print admingroup.Name