Parameters & Returns
Parameters
This function takes no parameters.
Returns
Quick Summary
Declares a data member within a Type
Technical Exegesis...
Declares a data member within a Type. Syntax is Field name:Type. Fields are variables that belong to each instance of a Type. They store the state/data for objects. Accessed using the backslash operator (object\fieldName). Fields must be declared inside a Type...EndType block.