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 var integer or any type that matches IsIntegerNumber.
value
the value of the item at the specified index, this can be any var or object.
Gets element at the specified index.
Sets the element at the specified index
Throws MfArgumentOutOfRangeException if index is out of range of the number of elements in the list.
Throws MfNotSupportedException in derived classes that are Readonly.
This property can not be overridden in derived classes
; MfGenericList has a zero based index
myList := new MfGenericList(MfString)
myList.Add(new MfString("Item 1"))
myList.Add(new MfString("Item 2"))
myList.Add(new MfString("Item 3"))
myList.Add(new MfString("Item 4"))
int := new MfInteger(1)
myList.Item[int] := new MfString("Hello World")
myList.Item[2] := new MfString("V")
Msgbox % myList.Item[0].Value ; displays "Item 1"
Msgbox % myList.Item[int].ToString() ; displays "Hello World"
Msgbox % myList.Item[2].Value ; displays "V"
Msgbox % myList.Item[3].Value ; displays "Item 4"