Record.ToList

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}