Description
Returns
the current version of the product.
Syntaxe
Perl
$prodinfo->GetProductVersion();
- Identificateur
- Description
- prodinfo
- A CQProductInfo object.
- Valeur renvoyée
- A String containing the product version.
Exemple
Perl
use CQPerlExt;
my $cqobject = CQSession::Build();
my $prodinfo = $cqobject->GetProductInfo();
print "ProductVersion = '".$prodinfo->GetProductVersion()."'\n";
CQSession::Unbuild($cqobject);