본문으로 건너뛰기

Type.OpenRecord

지정한 레코드 형식의 열린 버전을 반환합니다(이미 열려 있는 경우에는 동일한 형식).

Syntax

Type.OpenRecord(
type as type
) as type

Remarks

지정한 레코드 type의 열린 버전을 반환합니다(이미 열려 있는 경우에는 동일한 형식).

Examples

Example #1

type [ A = number]의 열린 버전을 만듭니다.

Type.OpenRecord(type [A = number])

Result:

type [A = number, ...]

Category

Type