Arrays.Add

From Xojo Documentation

Method

Arrays.Add(value As DataType)

New in 2020r2

Supported for all project types and targets.

Adds a new element to the end of a one-dimensional array, increasing the size of the array by one. The value must match the data type of the array.

Usage

array.Add(value)

Part Description
array Required. The array to to which you wish to add elements.
value The value to be assigned to the new array element.

Notes

The Add method works with one-dimensional arrays only.

Sample Code

This example adds a new element to the end of the names array. The new element becomes the last element of the array.

Var names() As String
names.Add("Betty")

See Also

Var statement; Arrays concept for a complete list of functions; ParamArray keyword