Skip to content

Latest commit

 

History

History
32 lines (22 loc) · 1.31 KB

File metadata and controls

32 lines (22 loc) · 1.31 KB

ifArraySet

The ifArraySet interface supports the array indexing operator [].

(See ArrayOperator)

Implemented by

Name Description
roArray An 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
roByteArray The byte array component is used to contain and manipulate an arbitrary array of bytes
roList The list object implements the interfaces: ifList, ifArray, ifEnum and therefore can behave like an array that can dynamically add members
roXMLList Contains 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

Name Type Description
index Integer The entry to be updated.
tvalue Dynamic The new value for the specified entry.