Statement HIDDEN: Foundation
Limits visibility of methods and member variables to the class
HIDDEN:
The keyword HIDDEN: determines the visibility attribute for subsequently declared member variables and methods within the class declaration. The member variables and methods which are declared after HIDDEN: are only visible within the source code for the methods of the declared class, and can be examined or called only within these methods. They are not visible in subclasses nor in the rest of the program. HIDDEN: is the default visibility attribute which is used for all member variables and methods until another visibility attribute is specified.
If you see anything in the documentation that is not correct, does not match your experience with the particular feature or requires further clarification, please use this form to report a documentation issue.