ICustomXmlPart

public interface ICustomXmlPart

Represents custom xml part.

Methods

MethodDescription
getXmlAsString()Returns or sets xml data as UTF-8 string.
setXmlAsString(String value)Returns or sets xml data as UTF-8 string.
getXmlData()Returns or sets xml data.
setXmlData(byte[] value)Returns or sets xml data.
getItemId()Specifies a globally unique identifier (GUID) that uniquely identifies a single custom XML part within an Office Open XML document.
setItemId(UUID value)Specifies a globally unique identifier (GUID) that uniquely identifies a single custom XML part within an Office Open XML document.
getNamespaceSchemas()Returns the collection XML schemas that are associated with the custom XML part.
remove()Removes the custom xml part from the presentation.

getXmlAsString()

public abstract String getXmlAsString()

Returns or sets xml data as UTF-8 string. Read/write String.

Returns: java.lang.String

setXmlAsString(String value)

public abstract void setXmlAsString(String value)

Returns or sets xml data as UTF-8 string. Read/write String.

Parameters:

ParameterTypeDescription
valuejava.lang.String

getXmlData()

public abstract byte[] getXmlData()

Returns or sets xml data. Read/write byte[].

Returns: byte[]

setXmlData(byte[] value)

public abstract void setXmlData(byte[] value)

Returns or sets xml data. Read/write byte[].

Parameters:

ParameterTypeDescription
valuebyte[]

getItemId()

public abstract UUID getItemId()

Specifies a globally unique identifier (GUID) that uniquely identifies a single custom XML part within an Office Open XML document. Read-only java.util.UUID.

Returns: java.util.UUID

setItemId(UUID value)

public abstract void setItemId(UUID value)

Specifies a globally unique identifier (GUID) that uniquely identifies a single custom XML part within an Office Open XML document. Read-only java.util.UUID.

Parameters:

ParameterTypeDescription
valuejava.util.UUID

getNamespaceSchemas()

public abstract String[] getNamespaceSchemas()

Returns the collection XML schemas that are associated with the custom XML part. Read-only String[].

Returns: java.lang.String[]

remove()

public abstract void remove()

Removes the custom xml part from the presentation.