Record.FieldNames

Syntax

Record.FieldNames(record as record) as list

About

以文本形式返回记录 record 中字段的名称。

示例 1

查找记录中字段的名称。

用法

Record.FieldNames([OrderID = 1, CustomerID = 1, Item = "Fishing rod", Price = 100.0])

输出

{"OrderID", "CustomerID", "Item", "Price"}