Array.UBound
Syntax:
Returned value:
The largest index in an array. If the quantity of elements equals 0, -1 is returned.
Description:
Availability:
Note:
Example:
For IndexOf = 0 to Array.UBound() Do Array[IndexOf] = Array[IndexOf] + 1; EndDo; |
Syntax:
Returned value:
Description:
Availability:
Note:
Example:
For IndexOf = 0 to Array.UBound() Do Array[IndexOf] = Array[IndexOf] + 1; EndDo; |