GetCompanyWebAddress

Description

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

Syntax

Perl


$prodinfo->GetCompanyWebAddress(); 
Identifier
Description
prodinfo
A CQProductInfo object.
Return value
A String containing the company web address.

Example

Perl


use CQPerlExt;



my $cqobject = CQSession::Build();

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

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

CQSession::Unbuild($cqobject);