User-defined data types
- Last UpdatedAug 29, 2024
- 1 minute read
A user-defined data type (UDT) is a structured data type consisting of elements of other selected data types.
The data type of each element of a UDT can be one of the following:
-
A simple data type, except string.
-
Another UDT.
-
An array of a a simple data type.
-
An array of UDT.
Note: A UDT cannot be nested within itself.
UDT Syntax:
#<UDT Instance>.<UDT Element> <ItemSuffix>
(where "#" and <ItemSuffix> are optional).