アプリケーションのバージョン("6.5.170.QFE1"や"XSI_Pioneer_Beta1.234-4.0")を戻します。v
7.0 の場合は、バージョン情報のフォーマットは以下のようになります。
{ReleaseNumber}{BuildNumber}{UpdateNumber}
チャンクがこの情報を表します。
{ReleaseNumber}: アルファベット文字と小数点 (".")
を含めることができます。リリース済みの製品の場合は、"Major.Minor"の表記("6.5"など)を含むことができます。リリース前のバージョンの場合は、"CodeNameMileStone"("XSI_Pioneer_Beta1")を含むことができます。
- {BuildNumber}:英数字も含むことができますが、小数点は含むことができません("234"または"234-4")。-
{UpdateNumber}:英数字も含むことができますが、小数点は含むことができません("1"または"QFE1")。
v 7.0
以前のバージョンの場合は、バージョン情報のフォーマットは"Major.Minor.YYYY.MMDD"("6.02.2007.0605"など)のようになります。
oString = Application.Version(); |
/* This example shows how to display the build information (for a v7.0 pre-release) */ Application.LogMessage( Application.Version() ); // Assuming the Alpha7 milestone of v7.0 release, build 233 (no updates) // LogMessage would show the line below: // INFO : Ariane_Alpha7.233.0 |
' ' This example shows how to display the build information (prior to v7.0) ' Application.LogMessage Application.Version ' Assuming Major version 2, Minor version 01, Year 2002, Month 03 and day 028 ' LogMessage would show the line below: ' INFO: 2.01.2002.0328 |