CustomXmlPart

CustomXmlPart class

Represents a Custom XML Data Storage Part (custom XML data within a package).

class CustomXmlPart;

Properties

PropertyTypeDescription
dataUint8ArrayGets or sets the XML content of this Custom XML Data Storage Part.
schemaDataUint8ArrayGets or sets the XML content of this Custom XML Schema Data Storage Part.
iDstringGets and sets the id of the custom xml part.

Methods

MethodDescription
getData()@deprecated. Please use the ‘data’ property instead. Gets or sets the XML content of this Custom XML Data Storage Part.
setData(Uint8Array)@deprecated. Please use the ‘data’ property instead. Gets or sets the XML content of this Custom XML Data Storage Part.
getSchemaData()@deprecated. Please use the ‘schemaData’ property instead. Gets or sets the XML content of this Custom XML Schema Data Storage Part.
setSchemaData(Uint8Array)@deprecated. Please use the ‘schemaData’ property instead. Gets or sets the XML content of this Custom XML Schema Data Storage Part.
getID()@deprecated. Please use the ‘iD’ property instead. Gets and sets the id of the custom xml part.
setID(string)@deprecated. Please use the ‘iD’ property instead. Gets and sets the id of the custom xml part.
isNull()Checks whether the implementation object is null.

data

Gets or sets the XML content of this Custom XML Data Storage Part.

data : Uint8Array;

schemaData

Gets or sets the XML content of this Custom XML Schema Data Storage Part.

schemaData : Uint8Array;

iD

Gets and sets the id of the custom xml part.

iD : string;

getData()

@deprecated. Please use the ‘data’ property instead. Gets or sets the XML content of this Custom XML Data Storage Part.

getData() : Uint8Array;

setData(Uint8Array)

@deprecated. Please use the ‘data’ property instead. Gets or sets the XML content of this Custom XML Data Storage Part.

setData(value: Uint8Array) : void;

Parameters:

ParameterTypeDescription
valuenumber[]The value to set.

getSchemaData()

@deprecated. Please use the ‘schemaData’ property instead. Gets or sets the XML content of this Custom XML Schema Data Storage Part.

getSchemaData() : Uint8Array;

setSchemaData(Uint8Array)

@deprecated. Please use the ‘schemaData’ property instead. Gets or sets the XML content of this Custom XML Schema Data Storage Part.

setSchemaData(value: Uint8Array) : void;

Parameters:

ParameterTypeDescription
valuenumber[]The value to set.

getID()

@deprecated. Please use the ‘iD’ property instead. Gets and sets the id of the custom xml part.

getID() : string;

setID(string)

@deprecated. Please use the ‘iD’ property instead. Gets and sets the id of the custom xml part.

setID(value: string) : void;

Parameters:

ParameterTypeDescription
valuestringThe value to set.

isNull()

Checks whether the implementation object is null.

isNull() : boolean;