LowBound

concerns

The LowBound attribute returns the lowest occupied index of the list. If the list is empty, there will be returned the value -1.

 

Syntax

LowBound

Return value

Type

Description

Long

Lowest occupied index

Parameter

None

 

Example:

 

Colors.Add({NoValue, NoValue, "red", "blue", "green"})

MsgBox(Colors.LowBound)

#shows 2