GetCompanyName

Description

Restituisce il nome della società nell'impostazione internazionale corrente (IBM, in lingua inglese).

Sintassi

Perl

$prodinfo->GetCompanyName(); 
Identificativo
Description
prodinfo
Un oggetto CQProductInfo.
Valore di ritorno
Un valore String che contiene il nome della società (ad esempio, IBM).

Esempio

Perl

use CQPerlExt;



my $cqobject = CQClearQuest::Build();

my $prodinfo = $cqobject->CreateProductInfo();

print "CompanyName         = '".$prodinfo->GetCompanyName()."'\n";

CQClearQuest::Unbuild($cqobject); 


Feedback