XmpArray Class
Contents
[
Hide
]Summary: Represents Xmp Array in XmpPackage.
Module: aspose.imaging.xmp
Full Name: aspose.imaging.xmp.XmpArray
Inheritance: IXmpType, XmpCollection
Constructors
| Name | Description |
|---|---|
| XmpArray(type, items) | Initializes a new instance of the XmpArray class. |
Properties
| Name | Type | Access | Description |
|---|---|---|---|
| values | string[] | r | Gets array of values inside XmpArray. |
Methods
| Name | Description |
|---|---|
| add(item) | Adds new item. |
| add_item(item) | Adds new item. |
| get_xml_value() | Converts XMP value to the XML representation. |
| get_xmp_representation() | Gets the XMP string value of this. |
Constructor: XmpArray(type, items)
XmpArray(type, items)
Initializes a new instance of the XmpArray class.
Parameters:
| Parameter | Type | Description |
|---|---|---|
| type | XmpArrayType | The type of array. |
| items | string[] | The items list. |
Method: add(item)
add(item)
Adds new item.
Parameters:
| Parameter | Type | Description |
|---|---|---|
| item | System.Object | The item to be added to list of items. |
Method: add_item(item)
add_item(item)
Adds new item.
Parameters:
| Parameter | Type | Description |
|---|---|---|
| item | string | The item to be added to list of items. |
Method: get_xml_value()
get_xml_value()
Converts XMP value to the XML representation.
Returns
| Type | Description |
|---|---|
| string | Returns the XMP value converted to the XML representation. |
Method: get_xmp_representation()
get_xmp_representation()
Gets the XMP string value of this.
Returns
| Type | Description |
|---|---|
| string | Returns the string contained value in XMP format. |