I am generating word document using Open XML SDK, the document contain a textBox, the generated element for the textBox is in this form :
<mc:AlternateContent>
<mc:Choice Requires="wps">
<w:drawing>
// Drawing for word 2010
</w:drawing>
</mc:Choice>
<mc:Fallback>
<w:pict>
// Pict for word 2007
</w:pict>
</mc:Fallback>
</mc:AlternateContent>
The generated document is valid against 2007 and 2010 formats, when the document is opened with word 2010 the textBox is visible, but opening the document with word 2007 the textBox is empty.
How can I add an alternate content that can be opened with both word 2010 and 2007.
Regards.