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.ToList(record as record) as list
About
Returns a list of values containing the field values from the input record
.
Example 1
Extract the field values from a record.
Usage
Record.ToList([A = 1, B = 2, C = 3])
Output
{1, 2, 3}