This documentation is for the old version. Go to the latest Graphics Mill docs

MetadataDictionary.Item Property

Gets/sets item with the specified key.

Namespace: Aurigma.GraphicsMill.Codecs
Assembly: Aurigma.GraphicsMill (in Aurigma.GraphicsMill.dll)

Syntax

Visual Basic
Public Overridable Default Property Item ( _
	key As Object _
) As Object
C#
public virtual Object this[
	Object key
] { get; set; }

Parameters

key

Type: System.Object

Key of the object to get or set. Typically it is a number that represents an EXIF or IPTC tag. Most used tags are available as static members of ExifDictionary and IptcDictionary.

Property Value

An item to get or set.

Remarks

If at this key several values are stored, this property will return the first item. To return all the items, use GetItemArray(Object) method.

If you need to extract a string representation of this item, you should use GetItemString(Object) method. For those items which returns a enumeration value, it will return human-friendly string instead of the number.

See Also

Reference