GetProductVersion

Description

Returns the current version of the product.

Syntax

Perl


$prodinfo->GetProductVersion(); 
Identifier
Description
prodinfo
A CQProductInfo object.
Return value
A String containing the product version.

Example

Perl


use CQPerlExt;

my $cqobject = CQSession::Build();

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

print "ProductVersion = '".$prodinfo->GetProductVersion()."'\n";

CQSession::Unbuild($cqobject);