Description
Imposta o restituisce il nome del gruppo.
Sintassi
VBScript
group.Name
group.Name group_name
Perl
$group->GetName();
$group->SetName(group_name);
- Identificativo
- Description
- group
- Un oggetto Group che rappresenta una serie di utenti associati all'archivio di schemi corrente.
- group_name
- Un valore String che rappresenta il nuovo nome del gruppo.
- Valore di ritorno
- Un valore String contenente il nome del gruppo.
Esempio
VBScript
set adminSession = CreateObject("ClearQuest.AdminSession")
adminSession.Logon "admin", "", ""
set groupList = adminSession.Groups
for each groupObj in groupList
groupName = groupObj.Name
msgbox groupName
Next