LibreOffice 7.6 Help
Definieert de standaardwaarde voor de ondergrens van matrices als 0 of 1.
Option Base { 0 | 1}
Deze instructie moet worden ingevoegd vóór de uitvoerbare programmacode in een module.
Option Base 1
Sub ExampleOptionBase
Dim sVar(20) As String
MsgBox LBound(sVar())
End Sub