Description
Returns
the web address of the company for the current locale.
Syntaxe
Perl
$prodinfo->GetCompanyWebAddress();
- Identificateur
- Description
- prodinfo
- A CQProductInfo object.
- Valeur renvoyée
- A String containing the company web address (for example,
www.ibm.com).
Exemple
Perl
use CQPerlExt;
my $cqobject = CQClearQuest::Build();
my $prodinfo = $cqobject->CreateProductInfo();
print "CompanyWebAddress = '".$prodinfo->GetCompanyWebAddress()."'\n";
CQClearQuest::Unbuild($cqobject);