Func()

提供: AutoHotkey Wiki
移動: 案内検索

実行制御 | GUI表示 | 演算・変数 | メモリ・DLL操作 | 文字列操作 | キーボード | マウス | シェル | ウィンドウ | ウィンドウグループ
ステータスバー | コントロール | サウンド | ファイル | INIファイル | レジストリ | 環境変数 | AutoHotkey | その他 | 設定関係 | オブジェクト

Func() [v1.1.00+][編集]

AHKL 関数を参照し取得する。

Func(FunctionName)

Parameters[編集]

引数名 説明
FunctionName

Remarks[編集]

If FunctionName does not exist explicitly in the script (by means such as #Include or a non-dynamic call to a library function), Func() returns 0. Otherwise, it returns a reference to the function. This can be used to call the function or retrieve information such as the minimum and maximum number of parameters.

Related[編集]

関数