|
| KiXtart 2001 Manual |
ReDim
| Action: | Declares dynamic-array variables, and allocates or reallocates storage space at procedure level. |
| Syntax: | REDIM
[PRESERVE] "variable1"
[<,>"variableX"] |
| Remarks: | The PRESERVE keyword preserves the data in an existing array when you change the size of the dimension. Local variables are visible only in the current script or script segment. |
| See Also: |
Global,
Dim, UBound( ) |
| Examples: |
REDIM $MyArray[20] |