語法
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]