Selection()

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

説明

Selection 関数は、現在のフィクスチャ・セレクションを保持するオブジェクトへのハンドルを返します。

引数

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

戻り値

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

Selection オブジェクトに関する情報を、Dump() で Command Line History に出力します。

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