Option Base Statement

將陣列的標準下邊界定義為 0 或 1。

Syntax:

Option Base { 0 | 1}

Parameters:

警告圖示

此陳述式必須位於模組中的可執行程式碼之前。


Example:


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

Please support us!