GetFullProductVersion

Description

Returns the full product version. This method is equivalent to the GetProductVersion and GetPatchVersion return values separated by a space.

Syntax

Perl


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

Example

Perl


use CQPerlExt;



my $cqobject = CQSession::Build();

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

print "FullProductVersion = '".$prodinfo->GetFullProductVersion()."'\n";

CQSession::Unbuild($cqobject);