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!