Arrays.AddRowAt
From Xojo Documentation
![]() |
This item was deprecated in version 2020r2. Please use Arrays.AddAt as a replacement. |
Method
Arrays.AddRowAt(index As Integer, value As DataType)
New in 2019r2
Supported for all project types and targets.
New in 2019r2
Supported for all project types and targets.
Adds a new row into an array at the specified index.
Usage
array.AddRowAt index, value
Part | Type | Description |
---|---|---|
array | array of any valid data type | The array in which to add the new row. |
index | Integer | The index in array to add the new row. |
value | Datatype of array | The value to be assigned to the new array row. |
Notes
The AddRowAt 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.AddRowAt(2, "Bill")
results in the following array:
names |
---|
Leonard |
Abraham |
Bill |
Herbert |
See Also
Arrays for a complete list of functions.