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...)
|
feedback
|
|
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 | |||||
feedback
|
|
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:
| ||||
|
feedback
|
.zipfrom the.docx? – JMax Aug 9 '11 at 14:47