Skip to main content

Type.OpenRecord

Returns an opened version of the given record type (or the same type, if it is already open).

Syntax

Type.OpenRecord(
type as type
) as type

Remarks

Returns an opened version of the given record type (or the same type, if it is already opened).

Examples

Example #1

Create an opened version of <code>type [ A = number]</code>.

Type.OpenRecord(type [A = number])

Result:

type [A = number, ...]

Category

Type