GetCompanyWebAddress

Description

Returns the web address of the company for the current locale.

Syntaxe

Perl

$prodinfo->GetCompanyWebAddress(); 
Identificateur
Description
prodinfo
A CQProductInfo object.
Valeur renvoyée
A String containing the company web address (for example, www.ibm.com).

Exemple

Perl

use CQPerlExt;



my $cqobject = CQSession::Build();

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

print "CompanyWebAddress = '".$prodinfo->GetCompanyWebAddress()."'\n";

CQSession::Unbuild($cqobject); 

Commentaires