ifArraySet

The ifArraySet interface supports the array indexing operator [].

(See ArrayOperator)

Implemented by

NameDescription
roArrayAn array stores an indexed collection of BrightScript objects. Each entry of an array can be a different type, or they may all of the same type
roByteArrayThe byte array component is used to contain and manipulate an arbitrary array of bytes
roListThe list object implements the interfaces: ifList, ifArray, ifEnum and therefore can behave like an array that can dynamically add members
roXMLListContains a list of roXML objects

Supported methods

SetEntry(index As Integer, tvalue As Dynamic) As Void

Description

Sets an entry at a given index to the passed value. If index is beyond the bounds of the array, the array is expanded to accommodate it.

Parameters

NameTypeDescription
indexIntegerThe entry to be updated.
tvalueDynamicThe new value for the specified entry.