Parameters & Returns
Parameters
This function takes no parameters.
Returns
Quick Summary
Declares a function that belongs to a Type
Technical Exegesis...
Declares a function that belongs to a Type. Syntax is Method Name(params):ReturnType. Methods are functions associated with a Type that can access the Type's fields using the 'this' keyword. Methods define the behavior/operations for objects. Must be closed with EndMethod. Declared inside a Type...EndType block.