次の方法で共有


Type.FunctionParameters

構文

Type.FunctionParameters(type as type) as record

バージョン情報

フィールド値が typeのパラメーターの名前に設定され、その値が対応する型に設定されているレコードを返します。

例 1

関数 (x as number, y as text)に対するパラメーターの型を検索します。

使用方法

Type.FunctionParameters(type function (x as number, y as text) as any)

アウトプット

[x = type number, y = type text]