This is preliminary documentation and subject to change.
To comment on this topic, please send us email at ngwssdk@microsoft.com. Thanks!
LBound Function Example
This example uses the
LBound function to determine the smallest available subscript for the indicated dimension of an array. Use the
Option Base statement to override the default base array subscript value of 0.
Dim Lower
Dim MyArray(1 To 10, 5 To 15, 10 To 20) ' Declare array variables.
Dim AnyArray(10)
Lower = Lbound(
MyArray,
1)
' Returns 1.
Lower = Lbound(
MyArray,
3)
' Returns 10.
Lower = Lbound(
AnyArray)
' Returns 0 or 1, depending on
' setting of Option Base.