Record.FieldNames
Returns the names of the fields.
Syntax
Record.FieldNames(
record as record
) as list
Remarks
Returns the names of the fields in the record record
as text.
Examples
Example #1
Find the names of the fields in the record.
Record.FieldNames([OrderID = 1, CustomerID = 1, Item = "Fishing rod", Price = 100.0])
Result:
{"OrderID", "CustomerID", "Item", "Price"}
Category
Record.Selection