Purpose |
Return descriptive attributes of a given array. | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
Syntax |
y = ARRAYATTR(Arr(), AttrNum) | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
Remarks |
ARRAYATTR returns various descriptive attributes of an array, depending upon the value of AttrNum
| ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
See also |
|||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
Example |
DIM z(3,4,5) AS CURRENCYX DIM x AS LONG, Answer AS STRING FOR x = 0 TO 5 Answer = Answer + FORMAT$(x) Answer = Answer + $TAB Answer = Answer + FORMAT$(ARRAYATTR(z(),x)) Answer = Answer + $CRLF NEXT x ' The results are stored in Answer: | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
Result |
0 -1 1 14 2 0 3 3 4 120 5 8 |