GetFocus()

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

説明

GetFocus 関数は、UIで現在フォーカスがあるオブジェクトへのハンドルを返します。

引数

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

戻り値

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

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

Lua
return function()
-- This example dumps all information about the object who currently got focus.
Printf("=============== START OF DUMP ===============")
GetFocus():Dump()
Printf("================ END OF DUMP ================")
end