VCName type

The VCName structured type holds vCard data related to the person name.

Syntax

PUBLIC TYPE VCName RECORD
    FirstName,
    LastName,
    MiddleName,
    Prefix,
    Suffix STRING
    --, FormattedName STRING
  END RECORD

Usage

This type defines a record structure to hold vCard information related to the person name. It is used for values returned by the scan_name() function.

Example

IMPORT FGL VCard
MAIN
  DEFINE n VCard.VCName
  LET n.FirstName = "Hans"
  LET n.LastName = "Mustermann"
END MAIN