Examples: Option Public statement

' In this example, the Private keyword overrides 
' Option Public in the declaration of the 
' variables x, y, and z. 
Option Public
Private x, y, z      ' x, y, and z are Private variables.
Dim i As Integer     ' i is Public.