Gets or sets the element at the specified index.
OutputVar := instance.Item[index]
instance.Item[index] := Value
index
The zero-based index of the element to get or set.
Can be MfInteger instance of var integer.
value
the value of the item at the specified index
Gets element at the specified index.
Sets the element at the specified index
Throws MfArgumentOutOfRangeException if index is less than zero or index is equal to or greater than Count
Throws MfArgumentException if index is not a valid MfInteger instance or valid var containing Integer
int := new MfInteger(3)
myList.Index[int] = new MfString("Hello World")
myList.Index[4] = new MfChar("V")
Msgbox % myList.Index[int].ToString() ; displays Hello World
Msgbox % myList.Index[4].Value ; displays V