Name

Description

Définit ou renvoie le nom du groupe.

Les caractères suivants ne peuvent pas être utilisés dans un nom : !, {caractère espace}, ", #, $, %, &, ', , (, ), *, +, /, :, ;, <, =, >, ?, [, \, ], ^, `, {, |, }.

Syntaxe

VBScript

group.Name 
group.Name nom_groupe 

Perl

$group->GetName();
$group->SetName(nom_groupe); 
Identificateur
Description
group
Objet Group//**, representing one set of users associated with the current schema repository.
nom_groupe
Chaîne représentant le nouveau nom du groupe.
Valeur de retour
Chaîne contenant le nom du groupe.

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 

Commentaires