GetSelectedAttribute()

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

説明

GetSelectedAttribute 関数は、現在選択されているアトリビュートへのハンドルを返します。

引数

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

戻り値

  • handle:
    選択されているアトリビュートへのハンドルを返します。

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

Lua
return function()
-- This example dumps all information about the currently selected attribute
Printf("=============== START OF DUMP ===============")
GetSelectedAttribute():Dump()
Printf("================ END OF DUMP ================")
end