CustomXmlPart
CustomXmlPart class
Represents a Custom XML Data Storage Part (custom XML data within a package).
class CustomXmlPart;
Properties
Property | Type | Description |
---|---|---|
data | Uint8Array | Gets or sets the XML content of this Custom XML Data Storage Part. |
schemaData | Uint8Array | Gets or sets the XML content of this Custom XML Schema Data Storage Part. |
iD | string | Gets and sets the id of the custom xml part. |
Methods
Method | Description |
---|---|
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:
Parameter | Type | Description |
---|---|---|
value | number[] | 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:
Parameter | Type | Description |
---|---|---|
value | number[] | 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:
Parameter | Type | Description |
---|---|---|
value | string | The value to set. |
isNull()
Checks whether the implementation object is null.
isNull() : boolean;