Čítať v angličtine

Zdieľať cez


Type.TableRow

Syntax

Type.TableRow(table as type) as type

Informácie

Vráti typ riadka zadaného typu tabuľky. Výsledkom bude vždy typ záznamu.

Príklad č. 1

Vrátiť informácie o type riadka pre jednoduchú tabuľku.

Použitie

let
    tableRowType = Type.TableRow(Value.Type(#table({"Column1"}, {})))
in
    Type.RecordFields(tableRowType)

Výkon

[Column1 = [Type = type any, Optional = false]]