Type.FunctionParameters
Składnia
Type.FunctionParameters(type as type) as record
Informacje
Zwraca rekord z wartościami pól ustawionymi na nazwę parametrów type
, a ich wartości ustawione na odpowiadające im typy.
Przykład 1
Znajdź typy parametrów funkcji (x as number, y as text)
.
Użycie
Type.FunctionParameters(type function (x as number, y as text) as any)
Wyjście
[x = type number, y = type text]