DeviceConfiguration()

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

説明

DeviceConfiguration 関数は、DeviceConfiguration オブジェクトへのハンドルを返します。

引数

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

戻り値

  • handle:
    DeviceConfiguration へのハンドルを返します。

ハンドルに関連するデータを、Dump() 関数で出力します。

Lua
return function()
    -- This example dumps all information about the DeviceConfiguration object.
    Printf("=============== START OF DUMP ===============")
    DeviceConfiguration():Dump()
    Printf("================ END OF DUMP ================")
end