UxYJ6‖

aN2F8‖Option Base Statement

7SyG9‖Defines the default lower boundary for arrays as 0 or 1.

FVEx2‖Syntax:

Option Base { 0 | 1}

WADQ4‖Parameters:

Warning Icon

DPpsC‖This statement must be added before the executable program code in a module.


EFSA4‖Example:


Option Base 1
Sub ExampleOptionBase
   Dim sVar(20) As String
   MsgBox LBound(sVar())
End Sub