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