PUBLIC
This keyword is used for declaring the accessibility of a global method , variable or property.
A public variable, method or property can be used outside of the class code.
Examples
PUBLIC iCounter AS Integer
Public Sub Test()
DIM iLocal AS Integer
iCounter = iCounter + 1
iLocal = iLocal + 1
PRINT "PUBLIC:"; iCounter; " DIM:"; iLocal
End
For I As Integer = 1 to 4
Test()
Next
PUBLIC:1 DIM:1
PUBLIC:2 DIM:1
PUBLIC:3 DIM:1
PUBLIC:4 DIM:1
See also