Option Base Statement/text/sbasic/shared/03103200.xhpOption Base statement
Option Base Statement
Defines the default lower boundary for arrays as 0 or 1.Option Base { 0 | 1}This statement must be added before the executable program code in a module.Option Base 1Sub ExampleOptionBase Dim sVar(20) As String MsgBox LBound(sVar())End Sub