from_address method

from_address(, array, type)

Creates an XmpArray instance form a string array.

Returns

An XmpArray containing all the elements from the original array.


@staticmethod
def from_address(array, type):
    ...
Parameter Type Description
array list The array to create an XmpArray from.
type groupdocs.metadata.standards.xmp.XmpArrayType The type of the XmpArray.

from_address(, array, type)

Creates an XmpArray instance form an integer array.

Returns

An XmpArray containing all the elements from the original array.


@staticmethod
def from_address(array, type):
    ...
Parameter Type Description
array list The array to create an XmpArray from.
type groupdocs.metadata.standards.xmp.XmpArrayType The type of the XmpArray.

from_address(, array, type)

Creates an XmpArray instance form a date array.

Returns

An XmpArray containing all the elements from the original array.


@staticmethod
def from_address(array, type):
    ...
Parameter Type Description
array list The array to create an XmpArray from.
type groupdocs.metadata.standards.xmp.XmpArrayType The type of the XmpArray.

from_address(, array, type)

Creates an XmpArray instance form a double array.

Returns

An XmpArray containing all the elements from the original array.


@staticmethod
def from_address(array, type):
    ...
Parameter Type Description
array list The array to create an XmpArray from.
type groupdocs.metadata.standards.xmp.XmpArrayType The type of the XmpArray.

See Also