Role: Collection of Long.
Properties
- Property Count() As (Read Only)
-
Returns the number of long integers in the list.
- Example:
-
This example retrieves in NumberOfLongs the number of long integers
currently gathered in MyList.
NumberOfLongs = MyList.Count
Methods
- Sub Append( iLong)
-
Adds an long integer to the end of the list.
- Parameters:
-
- iLong
- The long integer to be added to the list. dd>
- Example:
-
The following example appends a long integer to the list.
Dim MInteger As Long MInteger = 4 Dim MyList As PspListOfLongs MyList.Append(MInteger)
- Func Item( iIndex) As
-
Returns a long integer from its index in the list.
- Parameters:
-
- iIndex
- The index of the first long integer in the collection is 1, and the index of the last long integer is Count. dd>
- Returns:
- the retrieved long integer. dd>
- Example:
-
The following example returns in the third long integer in the list.
Dim MyLong As Integer Dim MyList As PspListOfLongs MyLong = PspListOfLongs.Item(3)
- Sub RemoveByIndex( iIndex)
-
Remove a long integer from the list by specifying its position in the list.
- Parameters:
-
- iIndex
- The position of the long integer to be removed in the list. dd>
- Example:
-
The following example removes the second entry in the list. Please note that the list index starts with 1.
Dim MyList As PspListOfLongs MyList.RemoveByIndex (2)