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]