GetCompanyFullName

Description

Returns the full name of the company in the current locale. IBM Corporation, in English.

Syntaxe

Perl

$prodinfo->GetCompanyFullName(); 
Identificateur
Description
prodinfo
A CQProductInfo object.
Valeur renvoyée
A String containing the company fullname.

Exemple

Perl

use CQPerlExt;



my $cqobject = CQSession::Build();

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

print "CompanyFullName = '".$prodinfo->GetCompanyFullName()."'\n";

CQSession::Unbuild($cqobject); 

Commentaires