Item

Namespace ›› System ›› MfCollectionBase ›› Properties ››
Parent Previous Next

Item

Gets or sets the element at the specified index.

OutputVar := instance.Item[index]
instance.Item[index] := Value

Parameters

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

Gets element at the specified index.

Sets

Sets the element at the specified index

Throws

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

Example

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