Method
Arrays.AddRowAt
Warning
This item was deprecated in version 2020r2. Please use Arrays.AddAt as a replacement.
Description
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 |
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")
Compatibility
All project types on all supported operating systems.