Item

Namespace ›› System ›› MfDictionaryBase ›› Properties ››
Parent Previous Next

Item

Gets or sets the value associated with the specified key.

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

Parameters

key

The key whose value to get or set.

Value

The value to set for the key whose value to set.

Throws

Throws MfArgumentNullException if key is null.
Throws MfNotSupportedException if key is an object and does not derive from MfObject

Get Throws

Throws MfNotSupportedException if key is not in Dictionary.

Set Throws

Throws MfNotSupportedException if Dictionary is Isread-only.
Throws MfNotSupportedException if Dictionary is IsFixedSize.

Remarks

The value associated with the specified key. If the specified key is not found, attempting to get it returns MfNull, and attempting to set it creates a new element using the specified key.
On Set if key element is not null then OnSet and OnSetComplete will contain MfNull for the obj parameter.