GetCompanyFullName

Description

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

Syntax

Perl

$prodinfo->GetCompanyFullName(); 
Identifier
Description
prodinfo
A CQProductInfo object.
Return value
A String containing the company fullname.

Example

Perl

use CQPerlExt;



my $cqobject = CQSession::Build();

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

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

CQSession::Unbuild($cqobject);