| .TYPE Statement QuickSCREENi |
|
  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 |