LibreOffice 7.6 Help
ऐरे के लिए डिफ़ॉल्ट लोअर बाउंड्री 0 या 1 निर्धारित करता है.
Option Base { 0 | 1}
This statement must be added before the executable program code in a module.
Option Base 1
Sub ExampleOptionBase
Dim sVar(20) As String
MsgBox LBound(sVar())
End Sub