Type.TableRow
Syntax
Type.TableRow(table as type) as type
Info
Gibt den Zeilentyp des angegebenen Tabellentyps zurück. Das Ergebnis ist immer ein Datensatztyp.
Beispiel 1
Gibt die Zeilentypinformationen für eine einfache Tabelle zurück.
Verwendung
let
tableRowType = Type.TableRow(Value.Type(#table({"Column1"}, {})))
in
Type.RecordFields(tableRowType)
Ausgabe
[Column1 = [Type = type any, Optional = false]]