Array.Max (gb)
Property Read Max As Integer
Retourne le plus grand index du tableau.
Autrement dit,
Array.Max = Array.Count - 1
.
Cette propriété est utile pour énumérer le tableau en utilisant
FOR ..
NEXT
Exemples
DIM i AS Integer, Text AS String[]
Text = ["Just", "test"]
FOR i = 0 TO Text.Max
PRINT Text[i]
NEXT