Note
Access to this page requires authorization. You can try signing in or changing directories.
Access to this page requires authorization. You can try changing directories.
Syntax
Record.FieldNames(record as record) as list
About
Returns the names of the fields in the record record
as text.
Example 1
Find the names of the fields in the record.
Usage
Record.FieldNames([OrderID = 1, CustomerID = 1, Item = "Fishing rod", Price = 100.0])
Output
{"OrderID", "CustomerID", "Item", "Price"}