Parameters & Returns
Parameters
This function takes no parameters.
Returns
Quick Summary
Declares a custom data type (class) with fields and methods
Technical Exegesis...
Declares a custom data type (class) with fields and methods. Syntax is Type Name followed by Field declarations and Method definitions. Types allow you to create custom data structures that group related data and functionality together. Must be closed with EndType. Instances are created with the Create keyword.