1
1
Fork 0
mirror of https://github.com/QB64-Phoenix-Edition/QB64pe.git synced 2024-07-05 21:40:25 +00:00
QB64-PE/internal/help/UBOUND_111111.txt
Roland Heyder 6912727753 Update help files
Help file snapshot as of 07/31/2022.
2022-07-31 23:57:56 +02:00

38 lines
1.1 KiB
Plaintext

{{QBDLDATE:07-31-2022}}
{{QBDLTIME:23:45:27}}
The {{KW|UBOUND}} function returns the largest valid index (upper bound) of an array dimension.
{{PageSyntax}}
:''result%'' = {{KW|UBOUND}}(arrayName[, dimension%])
{{PageDescription}}
* {{Parameter|arrayName}} specifies the name of the array.
* {{Parameter|dimension%}} specifies the dimension number, starting with '''1''' for the first dimension.
** If omitted, {{Parameter|dimension%}} is assumed to be '''1'''.
** If {{Parameter|dimension%}} is less than '''1''' or is greater than the number of dimensions, a [[ERROR Codes|subscript out of range]] error occurs.
* {{KW|UBOUND}}, along with {{KW|LBOUND}}, is used to determine the range of valid indexes of an array.
{{PageExamples}}
{{CodeStart}}{{Cl|DIM}} myArray(5) {{Cl|AS}} {{Cl|INTEGER}}
{{Cl|DIM}} myOtherArray(1 to 2, 3 to 4) {{Cl|AS}} {{Cl|INTEGER}}
{{Cl|PRINT}} {{Cl|UBOUND}}(myArray)
{{Cl|PRINT}} {{Cl|UBOUND}}(myOtherArray, 2)
{{CodeEnd}}
{{OutputStart}} 5
4
{{OutputEnd}}
{{PageSeeAlso}}
* {{KW|Arrays}}, {{KW|LBOUND}}
* {{KW|DIM}}, {{KW|COMMON}}, {{KW|STATIC}}, {{KW|SHARED}}
{{PageNavigation}}