メインコンテンツまでスキップ

Type.TableRow

テーブル タイプの列のタイプを返します。

Syntax

Type.TableRow(
table as type
) as type

Remarks

指定されたテーブル タイプの行のタイプを返します。結果は常にレコード タイプです。

Examples

Example #1

単純なテーブルの行のタイプの詳細情報を返します。

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

Result:

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

Category

Type