Section A.17. Variable Declaration
A 17 Variable Declaration
| 
			 Const Statement  | 
			
			 Declares a constant  | 
		
| 
			 Dim Statement  | 
			
			 Declares a variable  | 
		
| 
			 Option Explicit Statement  | 
			
			 Requires variable declaration  | 
		
| 
			 Private Statement  | 
			
			 Declares the procedure or variable to have scope only in the module in which it is defined  | 
		
| 
			 Public Statement  | 
			
			 Declares a global or public variable or function; marks the member as part of the class' public interface in a class  | 
		
| 
			 ReDim Statement  | 
			
			 Declares a dynamic array variable  |