GetCompanyEmailAddress

説明

現在のロケールの会社の電子メール アドレスを戻します。

構文

Perl

$prodinfo->GetCompanyEmailAddress(); 
識別子
説明
prodinfo
CQProductInfo オブジェクト。
戻り値
会社の電子メール アドレスを含む String (例えば、us.ibm.com)。

Perl

use CQPerlExt;



my $cqobject = CQClearQuest::Build();

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

print "CompanyEmailAddress = '".$prodinfo->GetCompanyEmailAddress()."'¥n";

CQClearQuest::Unbuild($cqobject); 

フィードバック