Passa al contenuto principale

Type.RecordFields

Restituisce un record che descrive i campi di un tipo di record in cui ogni campo del tipo di record restituito ha un nome e un valore corrispondente.

Syntax

Type.RecordFields(
type as type
) as record

Remarks

Restituisce un record che descrive i campi di un record type. Ogni campo del tipo di record restituito ha un nome e un valore corrispondente, nel formato di un record [ Type = type, Optional = logical ].

Examples

Example #1

Trovare il nome e il valore del record <code>[ A = number, optional B = any]</code>.

Type.RecordFields(type [A = number, optional B = any])

Result:

[
A = [Type = type number, Optional = false],
B = [Type = type any, Optional = true]
]

Category

Type