ShowData()

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

説明

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

引数

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

戻り値

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

ShowData オブジェクトの情報を、Dump() 関数を用いて Command Line History に出力します。

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