メインコンテンツまでスキップ

Type.FunctionParameters

関数型のパラメーターの名前にフィールドの値が設定されたレコードと、関連する型に設定されたフィールドの値を返します。

Syntax

Type.FunctionParameters(
type as type
) as record

Remarks

type のパラメーターの名前にフィールドの値が設定されたレコードと、関連する型に設定されたフィールドの値を返します。

Examples

Example #1

関数に対するパラメーターの種類を検索します (<code>(x as number, y as text)</code>)。

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

Result:

[x = type number, y = type text]

Category

Type