將陣列的預設下邊界定義為 0 或 1。
Option Base { 0 | 1}
警告:此陳述式必須加在模組中的可執行程式碼之前。
option Base 1
Sub ExampleOptionBase
Dim sVar(20) As String
msgbox LBound(sVar())
end sub