GetCompanyName

Description

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

Syntaxe

Perl

$prodinfo->GetCompanyName(); 
Identificateur
Description
prodinfo
A CQProductInfo object.
Valeur renvoyée
A String containing the company name (for example, IBM).

Exemple

Perl

use CQPerlExt;



my $cqobject = CQSession::Build();

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

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

CQSession::Unbuild($cqobject); 

Feedback