Nóta
Teastaíonn údarú chun rochtain a fháil ar an leathanach seo. Is féidir leat triail a bhaint as shíniú isteach nó eolairí a athrú.
Teastaíonn údarú chun rochtain a fháil ar an leathanach seo. Is féidir leat triail a bhaint as eolairí a athrú.
Syntax
Type.RecordFields(type as type) as record
About
Returns a record describing the fields of a record type. Each field of the returned record type has a corresponding name and a value, in the form of a record [ Type = type, Optional = logical ].
Example 1
Find the name and value of the record [ A = number, optional B = any].
Usage
Type.RecordFields(type [A = number, optional B = any])
Output
[
A = [Type = type number, Optional = false],
B = [Type = type any, Optional = true]
]