SelectedSequence()

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

説明

SelectedSequence 関数は、選択されているシーケンスのハンドルを返します。

引数

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

戻り値

  • handle:
    選択されているシーケンスのハンドルを返します。

選択されているシーケンスに関するすべての情報を、Dump() 関数で Command Line History に出力します。

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