Utility functions / vCard utility functions (IMPORT FGL VCard) |
The VCName structured type to hold vCard data related to the person name.
PUBLIC TYPE VCName RECORD FirstName, LastName, MiddleName, Prefix, Suffix STRING --, FormattedName STRING END RECORD
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.
IMPORT FGL VCard MAIN DEFINE n VCard.VCName LET n.FirstName = "Hans" LET n.LastName = "Mustermann" END MAIN