GetCompanyName

Description

Returns the name of the company in the current locale (HCL, in English).

Syntax

Perl


$prodinfo->GetCompanyName(); 
Identifier
Description
prodinfo
A CQProductInfo object.
Return value
A String containing the company name (for example, HCL).

Example

Perl


use CQPerlExt;



my $cqobject = CQSession::Build();

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

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

CQSession::Unbuild($cqobject);