ShowSettings()

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

説明

ShowSettings 関数は、Root/ShowData/ShowSettings にあるオブジェクトへのハンドルを返すします。

引数

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

戻り値

  • handle:
    ShowSettings オブジェクトへのハンドルを返します。

ShowSettings オブジェクトの情報を、Dump() 関数で出力します。

Lua
return function ()
-- The following prints the dump for the object for the show settings
Printf("=============== START OF DUMP ===============")
ShowSettings():Dump()
Printf("================ END OF DUMP ================")
end