Syntax 
 | [ | Private | Public ] _ 
Type name 
    elem [([dim[, ...]])] As [New] type 
    [...] 
End Type 
 | 
|---|---|
Description 
 | Define a new usertype. Each elem defines an element of the type for storing data. As [New] type defines the type of data that can be stored. A user defined type variable has a value for each elem. Use .elem to access individual element values.  
Type defaults to Public if neither Private or Public is specified.  
 | 
See Also 
 | |
Example 
 | 
  |