Description
Sets
or returns the name of the group.
The following characters cannot be
used in a name: !, {the space character}, ", #, $, %, &, ', , (, ), *,
+, /, :, ;, <, =, >, ?, [, \, ], ^, `, {, |, }.
Exemple
VBScript
set adminSession = CreateObject("ClearQuest.AdminSession")
adminSession.Logon "admin", "", ""
set groupList = adminSession.Groups
for each groupObj in groupList
groupName = groupObj.Name
msgbox groupName
Next