GetCompanyName

Description

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

Syntax

Perl

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

Example

Perl

use CQPerlExt;



my $cqobject = CQSession::Build();

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

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

CQSession::Unbuild($cqobject);