Description
Returns
the web address of the company for the current locale.
Syntax
Perl
$prodinfo->GetCompanyWebAddress();
- Identifier
- Description
- prodinfo
- A CQProductInfo object.
- Return value
- A String containing the company web address (for example,
www.ibm.com).
Example
Perl
use CQPerlExt;
my $cqobject = CQClearQuest::Build();
my $prodinfo = $cqobject->CreateProductInfo();
print "CompanyWebAddress = '".$prodinfo->GetCompanyWebAddress()."'\n";
CQClearQuest::Unbuild($cqobject);