跳到主要内容

Add

Adds a new custom XML part to the XML manager.

Syntax

expression.Add(xml);

expression - A variable that represents a ApiCustomXmlParts class.

Parameters

NameRequired/OptionalData typeDefaultDescription
xmlRequiredstringThe XML string to be added.

Returns

ApiCustomXmlPart

Example

This example shows how to add a new custom XML part and then access it.

let doc = Api.GetDocument();
let xmlManager = doc.GetCustomXmlParts();
let newXml = xmlManager.Add("<content xmlns='http://example' version='1.0'></content>");
let infoParagraph = Api.CreateParagraph();
infoParagraph.AddText("New XML part added: " + newXml.GetXml());
doc.Push(infoParagraph);