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

RowExpression.Column

row 式内の行の列へのアクセスを表す抽象構文ツリー (AST) を返します。

Syntax

RowExpression.Column(
columnName as text
) as record

Remarks

row 式内の行の列 columnName へのアクセスを表す抽象構文ツリー (AST) を返します。

Examples

Example #1

列 "CustomerName" のアクセスを表す AST を作成します。

RowExpression.Column("CustomerName")

Result:

[
Kind = "FieldAccess",
Expression = RowExpression.Row,
MemberName = "CustomerName"
]

Category

Table.Table construction