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

XmpLocalizedTextNode.Add Method

Adds one item with the specified key.

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

Syntax

Visual Basic
Public Overrides NotOverridable Sub Add ( _
	key As Object, _
	value As Object _
)
C#
public override sealed void Add(
	Object key,
	Object value
)

Parameters

key

Type: System.Object

Key of the object to add.
value

Type: System.Object

An XmpLocalizedTextItemNode to add into the dictionary.

Remarks

An alternative way to add new entries into the dictionary is to use the Item[Object] method. Unlike the Add(Object, Object) method, if the key is found in the dictionary, new item overwrites the old value.

See Also

Reference