SelectionCount()

説明

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

引数

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

戻り値

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

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