array | (String) the array variable |
---|---|
dimension | [optional] (Integer) Integer specifies which dimension's upper index is returned. Use 1 for the first dimension, 2 for the second, etc.
If not set, then 1 is assumed. |
Dim n, A
A = Array(100, 6, 15)
n = UBound(A, 1)
' Returns 2
Dim n1, n2, arr(
3,5)
n1 = UBound(arr, 1)
' Returns 3
n2 = UBound(arr, 2)
' Returns 5