SelectionCount()

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

説明

SelectionCount 関数は、現在選択されているフィクスチャの総数を返します。

引数

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

戻り値

  • integer:
    この関数は、現在のセレクションにあるフィクスチャの総数を表す整数値を返します。
    セレクションがない場合は、0 を返します。

現在のセレクションにあるフィクスチャ数を、Command Line History に出力します。

Lua
return function()
Printf('Number of fixtures in the current selection: %i', SelectionCount())
end