Sdílet prostřednictvím


Type.FunctionParameters

Syntax

Type.FunctionParameters(type as type) as record

O nás

Vrátí záznam s hodnotami polí nastavenými na název parametrů typea jejich hodnoty nastavené na odpovídající typy.

Příklad 1

Najděte typy parametrů funkce (x as number, y as text).

využití

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

Výstup

[x = type number, y = type text]