I'm updating a word document by rewriting the CustomXMLPart file. I've basically followed this tutorial: http://blogs.msdn.com/b/brian_jones/archive/2009/01/05/taking-advantage-of-bound-content-controls.aspx

private bool _makeDoc()
        {

        var path = HttpContext.Current.Server.MapPath("~/Classes/Word/template.docx");
        using (WordprocessingDocument myDoc = WordprocessingDocument.Open(path, true))
        {
            //create new XML string
            //these values will populate the template word doc
            string newXML = "<root>";
                newXML += "<name>";
                newXML += "name goes here";
                newXML += "</name>";
                newXML += "<bio>";
                newXML += "text" + "more text";
                newXML += "</bio>";
            newXML += "</root>";

            MainDocumentPart mainPart = myDoc.MainDocumentPart;

            //delete old xml part
            mainPart.DeleteParts<CustomXmlPart>(mainPart.CustomXmlParts);

            //add new xml part
            CustomXmlPart customXml = mainPart.AddCustomXmlPart(CustomXmlPartType.CustomXml);
            using(StreamWriter ts = new StreamWriter(customXml.GetStream()))
            {
                ts.Write(newXML);
            }
            myDoc.Close();
        }
        return true;
    }

The problem is that I can't figure out how to add a line break between "text" and "more text". I've tried Environment.NewLine, I've tried wrapping it in <w:p><w:r><w:t> tags. I can't seem to get it to produce a valid docx file.

Any help would be appreciated.

link|improve this question

feedback

2 Answers

I believe you'll have to wrap them in paragraphs in order to get the returns, as far as I know at least. So your resulting OOXML would look something like,

<w:p><w:r><w:t>Text</w:t></w:r></w:p>
<w:p><w:r><w:t>More text</w:t></w:r></w:p>

As far as it not resulting in valid OOXML when you do this, have you opened the OOXML package "document.xml" and saw exactly where the XML is invalid?

Edit:

The OOXML SDK 2.0 comes with some validation tools you might find useful.

link|improve this answer
Is there some sort of tool to debug the word doc, or would you just let a browser flag the invalid pieces? – Cory Dee Jun 28 '11 at 15:05
@Cory The OOXML SDK 2.0 comes with some built in validation tools you might find more helpful than opening the XML in something like IE. I'll add a link in my response. – Brandon Moretz Jun 28 '11 at 15:19
Thanks Brandon. I took a look at the XML, but in document.xml, it just has the databinding tag, so it wasn't super helpful. However, I did discover an even simpler answer, I'll post it. – Cory Dee Jun 28 '11 at 15:45
feedback
up vote 0 down vote accepted

The Content Control properties has an option for "Allow carriage returns". Turning this on, and using Environment.NewLine worked perfectly.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.