Array Functions
Documentation
Statements and procedures for working with arrays.Defining Arrays
Statements that create arrays.
Clearing Array DataProcedures that work with array memory.
Retrieving Array SizeProcedures that return the array's length/size and bounds for any array's dimension.
Retrieving Array DescriptorProcedures that return a pointers to an array's descriptor.
| Defining Arrays Option Dynamic Clearing Array DataForces arrays to be defined as variable-length arrays. '$DynamicAlternate form of the Option Dynamic statement. Option StaticReverts a previous Option Dynamic command. '$StaticAlternate form of the Option Static statement. DimDefines any type of array. ReDimDefines and resizes variable-length arrays. Preserve | Retrieving Array Size Arraylen Retrieving Array DescriptorReturns the total number of array elements. ArraysizeReturns the total array size (in bytes). LBoundReturns the lower bound of an array's dimension. UBoundReturns the upper bound of an array's dimension. |