Changes the size of the right-most (least significant) boundary of an array. The array must have already been created using the Create Array action.
To set ReDim Array properties:
In the Available Actions pane, open the Variables folder and double-click the ReDim Array action or drag it into the Steps pane.
In the Array Name box, enter the name of the array.
In the New Size box, enter the new value of the right-most (least significant) boundary of the array.
To set the Description tab properties, please refer to Description Tab Options.
To set the Error Causes and On Error tab properties, please refer to Step Error Handling.
When finished, click OK to save settings.
Declaration
<AMREDIMARRAY NAME="text (array name)" SIZE="number" />
Example
Change the size of the right-most boundary of array "Array_Name" to 6.
<AMREDIMARRAY NAME="Array_Name" SIZE="6" />
See Also: Create Array, Create Object, Create Variable, Decrement Variable, Define Type, Increment Variable, ReDim Array, Set Variable
Property |
Type |
Required |
Default |
Markup |
Description |
Array name |
Text |
Yes |
(Empty) |
NAME="Array_Name" |
The name of the array to modify. |
New size |
Number |
Yes |
0 |
SIZE="23" |
The new size of the right-most boundary of the array. |