Returns the full product version. This method is equivalent to the GetProductVersion and GetPatchVersion return values separated by a space.
Perl
$prodinfo->GetFullProductVersion();
Perl
use CQPerlExt;
my $cqobject = CQSession::Build();
my $prodinfo = $cqobject->GetProductInfo();
print "FullProductVersion = '".$prodinfo->GetFullProductVersion()."'\n";
CQSession::Unbuild($cqobject);