Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.
Panel
borderColor#3D3D3D
bgColor#F4F4F4
titleColor#3D3D3D
borderWidth0
titleBGColor#3D3D3D
borderStylesolid

ON THIS PAGE

Table of Contents
indent20px

...

Returns the last (highest index) array list entry without removing it.

...

Returns the last (highest index) entry and removes it from the arraylist.

Push(

...

entry As Dynamic)

Adds a new highest-index entry to the end of the arraylist.

Shift() As Dynamic

Removes index zero from the array list and shifts all other entries down by one unit.

Unshift(

...

entry As Dynamic)

Adds a new index zero to the array list and shifts all other entries up by one unit.

Delete(

...

index As Integer) As Boolean

Deletes the indicated array list entry and shifts all above entries down by one unit.

Count() As Integer

Returns the index length of the highest entry in the array plus one list (i.e. the length index of the arrayhighest entry in the list plus one).

Clear()

...

Deletes every entry in the arraylist.

Append(

...

list As

...

roList)

Appends one roArrayroList to another. If the passed roArrayroList contains entries that were never set to a value, they are not appended.

 

Note
titleNote

The two appended objects must be of the same type. 

ifArrayGet 

GetEntry(a As Integer) As Dynamic

Returns an array a list entry of a given index. Entries start at zero. If an entry that has not been set is fetched, Invalid is returned.

...