Internal (Method Keyword)
Specifies whether this method definition is internal (not displayed in the class documentation).
Usage
To specify that this method is internal, use the following syntax:
Method name(formal_spec) As returnclass [ Internal ]
{ //implementation }
Otherwise, omit this keyword or place the word Not immediately before the keyword.
Details
Internal class members are not displayed in the class documentation. This keyword is useful if you want users to see a class but not see all its members.
Default
If you omit this keyword, this method is displayed in the class documentation.