How can I tag a "spot" (this can be a text area or text field) in a word document? I tried putting a plain text content control in my document, but when I looked at the generated XML there was no "alias" for that plain text control. All the code I've seen for getting one, needs it to have an alias. What am I doing wrong? And is there another easier way to easily "mark" a spot in a document and retrieve the text that's in it later? (The user will be entering the text...)

link|improve this question

78% accept rate
how do you get the generated XML? by extracting the .zip from the .docx? – JMax Aug 9 '11 at 14:47
@JMax I'm using OpenXML SDK which handles low level details. – KyleM Aug 9 '11 at 15:02
feedback

2 Answers

Typically, you use a Bookmark. You can mark a specific spot or you can bookmark a selection (area). They are exactly what you want and you will find them extremely helpful.

Check out http://openxmldeveloper.org/blog/b/openxmldeveloper/archive/2006/10/09/719.aspx, it should get you started.

WordprocessingML

link|improve this answer
Actually I realized while playing with the designer that I can set a "tag" and an "id" on a plain text box content control. Now I just need to figure out how to look up the control using its tag OR using its ID. – KyleM Aug 10 '11 at 16:55
A simple XML parser with XPath would do that without breaking a sweat – Konrads Aug 16 '11 at 11:26
feedback
up vote 0 down vote accepted

In Visual Studio I was able to use the designer to set the properties of the plain text control. On the properties there is a "tag" property that I set to the name I wanted for my tag. Then using this method I was able to find the control later:

WordprocessingDocument document = WordprocessingDocument.Open(file.OpenBinaryStream(), true);

        var docPart = document.MainDocumentPart;
        // Find the first content control whose Alias property
        // matches the supplied name.
        var sdts = docPart.Document.Descendants<Tag>();
        foreach (var sdt in sdts)
        {
            string value = (string)sdt.Val;

            if (value.Equals(contentControlTag))
            {
                oxe = sdt;
                break;
            }
        }

        return oxe;
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.