XmpMetadata.AddArrayItem

AddArrayItem(string, XmpValue)

Adds value into an array. The value will be added at the end of the array.

public void AddArrayItem(string arrayKey, XmpValue value)
ParameterTypeDescription
arrayKeyStringKey of the array to search in the dictionary.
valueXmpValueValue to add into the array.

See Also


AddArrayItem(string, int, XmpValue)

Adds value into an array by specified index.

public void AddArrayItem(string arrayKey, int index, XmpValue value)
ParameterTypeDescription
arrayKeyStringKey of the array to search in the dictionary.
indexInt32Index of new value in the array.
valueXmpValueValue to add into the array.

See Also