Excerpt | ||
---|---|---|
| ||
getElement(set, index) Returns the item at a specified index position within an Array or Recordset. |
Function: getElement()
Returns the item at a specified index position within an Array or Recordset.
...
Returns _NULL.
[].1
Returns _NULL.
in.CustomerNames
returns ... Please note that only recordsets can be indexed in this way, and lists must be accessed using numerical indices:
$numbersList.1
will return "x" if $numbersList has been set to in.CustomerNames.
in.$attributeName
will return the same as in.CustomerNames, if $attributeName is set to the string value $attributeName = "CustomerNames".