PhixFlow Help
getElement
Function: getElement()
Returns the item at a specified index position within an Array or Recordset.
Syntax
- getElement(set, index)
- set[index]
- set.index
Argument | Type | Description |
---|---|---|
set | Array or Recordset | The Array or Recordset to get the result from |
index | Integer | The position of the item in set to be returned. |
If index is not a valid entry the function will return _NULL.
Examples
getElement(["Red", "Green", "Blue"], 2)
Returns the 2nd element, "Green".
["Red", "Green", "Blue"].3
Returns the 3rd element, "Blue".
["Red", "Green", "Blue"].8
Returns _NULL.
[].1
Returns _NULL.
See Also
Please let us know if we could improve this page feedback@phixflow.com