Skip to main content
All docs
V25.1
  • Document.CustomXmlParts Property

    Provides access to a document’s collection of custom XML parts.

    Namespace: DevExpress.XtraRichEdit.API.Native

    Assembly: DevExpress.RichEdit.v25.1.Core.dll

    NuGet Package: DevExpress.RichEdit.Core

    Declaration

    CustomXmlPartCollection CustomXmlParts { get; }

    Property Value

    Type Description
    CustomXmlPartCollection

    A collection of custom XML parts.

    Remarks

    You can embed arbitrary XML data (called custom XML parts) in documents in DOCX and DOC format. Custom XML parts are included in the document structure but are not visible in the document.

    The image below shows the structure of a DOCX file with three custom XML parts (item1, item2, and item3).

    Document_CustomXmlParts

    The Document.CustomXmlParts property provides access to the CustomXmlPartCollection collection that stores custom XML parts. Use the collection’s members to insert, obtain, modify, or remove custom XML parts.

    The example below shows how to add custom XML parts to a document.

    using DevExpress.XtraRichEdit;
    using DevExpress.XtraRichEdit.API.Native;
    using System.Xml;
    // ...
    
    using (RichEditDocumentServer wordProcessor = new RichEditDocumentServer())
    {
        Document document = wordProcessor.Document;
        document.AppendText("This document contains custom XML parts.");
        // Add an empty custom XML part.
        ICustomXmlPart xmlItem = document.CustomXmlParts.Add();
        // Populate the XML part with content.
        XmlElement elem = xmlItem.CustomXmlPartDocument.CreateElement("Employees");
        elem.InnerText = "Stephen Edwards";
        xmlItem.CustomXmlPartDocument.AppendChild(elem);
    
        // Use a string to specify the content for a custom XML part.
        string xmlString = @"<?xml version=""1.0"" encoding=""UTF-8""?>
                                <Employees>
                                    <FirstName>Stephen</FirstName>
                                    <LastName>Edwards</LastName>
                                    <Address>4726 - 11th Ave. N.E.</Address>
                                    <City>Seattle</City>
                                    <Region>WA</Region>
                                    <PostalCode>98122</PostalCode>
                                    <Country>USA</Country>
                                </Employees>";
        document.CustomXmlParts.Insert(1, xmlString);
    
        // Add a custom XML part from a file.
        XmlDocument xmlDoc = new XmlDocument();
        xmlDoc.Load("Documents\\Employees.xml");
        document.CustomXmlParts.Add(xmlDoc);
        document.SaveDocument("Documents\\CustomXmlTestDoc.docx", DocumentFormat.Docx);
    }
    
    See Also