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 QuickSCREEN
◄QuickSCREEN► ◄Details► ◄Example► ◄Contents► ◄Index►
──────────────────────────────────────────────────────────────────────────────
TYPE - a BASIC declaration that defines a data type containing one
or more elements
Syntax
TYPE usertype
elementname AS typename
[elementname AS typename]
. . .
END TYPE
■ usertype is a name that will identify the user-defined type. Use
BASIC variable naming rules to coin this name.
■ elementname will identify this element of the user-defined type.
Use BASIC variable naming rules.
■ typename is INTEGER, LONG, SINGLE, DOUBLE, STRING*n, or another
user-defined type