Version()

grandMA3 ユーザマニュアル » プラグイン » Lua 関数 - Object-Free API » Version() Version 2.2

説明

The Version Lua function returns the software version.

Arguments

この関数は、引数を受け取りません。

Return

  • String:
    The returned string is the version of the grandMA3 software.

Example

This example prints the software version in the Command Line History:

Lua
return function()
Printf("Software version: %s", Version())
end