RowExpression.Column
構文
RowExpression.Column(columnName as text) as record
詳細
row 式内の行の列 columnName
へのアクセスを表す抽象構文ツリー (AST) を返します。
例 1
列 "CustomerName" のアクセスを表す AST が作成されます。
使用方法
RowExpression.Column("CustomerName")
出力
[
Kind = "FieldAccess",
Expression = RowExpression.Row,
MemberName = "CustomerName"
]