Record.FieldNames
フィールドの名前 を返します。
Syntax
Record.FieldNames(
record as record
) as list
Remarks
レコード record
内のフィールドの名前をテキストとして返します。
Examples
Example #1
レコード内のフィールドの名前を調べます。
Record.FieldNames([OrderID = 1, CustomerID = 1, Item = "Fishing rod", Price = 100.0])
Result:
{"OrderID", "CustomerID", "Item", "Price"}
Category
Record.Selection