Arrays.AddAt

From Xojo Documentation

Method

Arrays.AddAt(index As Integer, value As DataType)

New in 2020r2

Supported for all project types and targets.

Adds a new element into an array at the specified index.

Usage

array.AddAt index, value

Part Type Description
array array of any valid data type The array in which to add the new element.
index Integer The index in array to add the new element.
value Datatype of array The value to be assigned to the new array element.

Notes

The AddAt method works with one-dimensional arrays only.

Arrays can have a maximum index value of 2,147,483,646.

Sample Code

Consider the array names defined as follows:

names = Array("Leonard", "Abraham", "Herbert")

The statement:

names.AddAt(2, "Bill")

results in the following array:

names
Leonard
Abraham
Bill
Herbert

See Also

Arrays for a complete list of functions.