Skip to end of metadata
Go to start of metadata

You are viewing an old version of this page. View the current version.

Compare with Current View Page History

« Previous Version 3 Next »

Function: setElement()

Sets the value of an item at a specified index position within an Array or Recordset.

Syntax

  1. setElement(array, item, value)
ArgumentTypeDescription
arrayArray or RecordsetThe Array or Recordset to evaluate
itemIntegerThe position of the item in array to be returned.
valueIntegerThe value the item in array will be set to.

If item is not a valid entry, this function will cause the script to generate and error and stop processing.

Examples

setElement(["Red", "Green", "Blue"], 2, "Red")

Sets the 2nd element of the array, "Green", to be "Red", e.g. ["Red", "Red", "Blue"]

See Also

  • No labels