跳至主要内容

Type.FunctionParameters

傳回記錄,包含函數類型參數名稱的資料行值的記錄,以及其相對應類型的值設定。

Syntax

Type.FunctionParameters(
type as type
) as record

Remarks

傳回記錄,包含 type 參數名稱的資料行值的記錄,以及其相對應類型的值設定。

Examples

Example #1

尋找函數 (x as number, y as text) 的參數類型。

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

Result:

[x = type number, y = type text]

Category

Type