Important Notice
The pages on this site contain documentation for very old MS-DOS software,
purely for historical purposes.
If you're looking for up-to-date documentation, particularly for programming,
you should not rely on the information found here, as it will be woefully
out of date.
TYPE Statement
◄Summary► ◄Details► ◄Example► ◄Contents► ◄Index► ◄Back►
──────────────────────────────────────────────────────────────────────────────
Defines a data type or ISAM table type that contains one or more elements or
table columns (ISAM available in Professional Edition only).
TYPE usertype
elementname AS typename
[elementname AS typename]
.
.
.
END TYPE
■ usertype User-defined type or ISAM table type
■ elementname Element of the user-defined type or table column
of the user-defined type
■ typename User-defined type, nested user-defined type, an
array, or one of the following data types: INTEGER,
LONG, SINGLE (non-ISAM types only), DOUBLE, CURRENCY,
or fixed-length string
See Also
◄OPEN Statement (File I/O)► ◄User-Defined Data Types►