GetCustomXmlParts
检索与文档关联的自定义 XML 管理器。 此管理器允许操作和访问文档中的自定义 XML 部件。
语法
expression.GetCustomXmlParts();
expression - 表示 ApiDocument 类的变量。
参数
此方法没有任何参数。
返回值
ApiCustomXmlParts | null
示例
获取自定义 XML 管理器,添加新的 XML 部件,并通过 ID 检索。
// How can I get custom xml parts using a document in a document?
// Get custom xml parts for a document in a document.
let doc = Api.GetDocument();
let xmlManager = doc.GetCustomXmlParts();
let xmlText = "<content><text>Example XML</text></content>";
let xmlPart = xmlManager.Add(xmlText);
let xmlId = xmlPart.GetId();
let retrievedXml = xmlManager.GetById(xmlId);
let infoParagraph = Api.CreateParagraph();
infoParagraph.AddText("Retrieved XML: " + retrievedXml.GetXml());
doc.Push(infoParagraph);