GetFullProductVersion

説明

完全な製品バージョンを戻します。このメソッドは、スペースで区切られた GetProductVersion および GetPatchVersion 戻り値と等価です。

構文

Perl

$prodinfo->GetFullProductVersion(); 
識別子
説明
prodinfo
CQProductInfo オブジェクト。
戻り値
完全な製品バージョンを含む String。

Perl

use CQPerlExt;



my $cqobject = CQSession::Build();

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

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

CQSession::Unbuild($cqobject); 

フィードバック