GetBuildNumber

Description

Returns the product build number. This number is used to uniquely identify each build.

Syntax

Perl


$prodinfo->GetBuildNumber(); 
Identifier
Description
prodinfo
A CQProductInfo object.
Return value
A String containing the product build number (for example, 00430).

Example

Perl


use CQPerlExt;



my $cqobject = CQSession::Build();

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

print "BuildNumber = '".$prodinfo->GetBuildNumber()."'\n";

CQSession::Unbuild($cqobject);