WordProcessingML (Word 2003 XML Reference)
0
votes
2answers
271 views
What is the equivalent of a div or table with fixed height in openxml/worprocessingml
I want to include a table inside a div element so that whatever the number of rows of my table, my document is always structured the same way.
How can I do that?
The second solution would be to ...
3
votes
1answer
455 views
Convert outerXml to OpenXmlElement
I know how to convert an OpenXmlElement to outer xml by using the OpenXmlElement.OuterXml function but is it possible to do the opposite without knowing what kind of OpenXmlElement it's going to be?
...
2
votes
1answer
52 views
Different styling in a line in wordprocessing with opxnxml in c#
I have used codes below to apply two different character style to the two runs of one paragraph:
Paragraph heading = new Paragraph();
ParagraphProperties heading_pPr = new ...
2
votes
1answer
703 views
Different types of hyperlinks in Word document
I'm writing a small app the takes a path as input and then fetches every docx file in that path, replacing every hyperlink with a keyword.
The strange thing is that I found two sorts of hyperlinks, ...
0
votes
1answer
77 views
WordProcessingML. How do I assign background color to text?
I have code that creates document with several paragraphs with different text-color for some words. Something like:
using (var doc = WordprocessingDocument.Create("some-file-name", ...
0
votes
1answer
36 views
WordML language auto detedt
I'm creating a wordml document, that is typically not in english. Word marks all words as mis-spelled. I know about the <w:lang> tag, but the trouble is that i don't know the language while ...
0
votes
1answer
73 views
How can I add a header with WordProcessingML (MarkLogic Toolkit for Word)
With this code we can create a simple word document but I need to add a Header and a Footer.
let $para1 := ooxml:create-paragraph(fn:concat("Title: ",$title))
let $para2 := ...
0
votes
1answer
289 views
Hiding parts of OpenXml documents programmatically
Is it possible to programmatically hide parts of an OpenXML document, without actually removing it?
The reason I would want to do this: This is a template file, dynamic parts are filled using ...
0
votes
1answer
511 views
Content Control Removal - Need solution
I need to work on document generation module of out application. I have gone through some of the links and blogs that helped me to go ahead and implement Content Control and Custom XML based document ...
0
votes
1answer
98 views
WordProcessingML shapes problem
I am currently working on exporting information from browser to word document. I am having information which contains colors and shapes. Now when I export them using wordprocessingML I am able to ...
1
vote
0answers
109 views
Insert RTF string into Ms Word using Open XML
I have a table in SQL Server that contains RTF code like this:
{\rtf1\ansi\ansicpg1252\deff0\deflang1033{\fonttbl{\f0\fnil\fcharset0 Tahoma;}}
\viewkind4\uc1\pard\f0\fs17 Lintel Inspection
\par }
I ...
1
vote
0answers
139 views
C++ Win32: fast word processing-style text rendering under Windows 7
At user request, my (for now C#) application reads big chunks of rich text (for now, in .NET FlowDocument XAML format) from a SQL Server database, and displays it.
I use a C# RichTextBox for that, it ...
1
vote
0answers
432 views
Openxml Add another different footer to an existing docx
I am trying to add a different footer after each altchunk is added. But my code changes all footers and on last page there are two footers. I am adding a section break prior to adding the new footer ...
1
vote
0answers
284 views
Image processing within open xml sdk and word processing
Does anyone know how to edit a picture with the Open XML SDK and Office2010 namespace?
For example, resize or remove background, or smooth edges, crop or something like that...
The only thing that ...
0
votes
0answers
40 views
Embedding metadata into a Word document at the paragraph or run level by adding a namespace
I need to extend an automatic WordML report that's generated from a SQL database. I want to add some hidden information, per paragraph; basically storing a hidden ID so that later processing on that ...
0
votes
0answers
143 views
C# Automated Word Utility - Upgrade from WordProcessingML/XSLT to OpenXML
I have a .Net application that was developed for Word 2003 which uses a XSL style sheet to translate an XML file to a word document report. The report comprises of text, images, tables and tables of ...
0
votes
0answers
89 views
Retrieve a CustomXML Part in WordprocessingML after MS Word has changed the Relationship Id
When I use the OpenXML SDK to add a CustomXML Part to a Word document with a custom Relationship-Id, a open->change->save cycle in Word changes this Id.
Code to add the Custom XML part:
...
0
votes
0answers
104 views
Manipulating simple bookmarks in Word
There are a lot of questions, answers and posts about openXml, mainly good, thorough stuff that Eric White posts here (also here and other stack-overflow questions). The thing is the examples have two ...
0
votes
0answers
505 views
Questions of insert columns to table in word via Open XML SDK
I'm using open xml sdk to insert new columns into a table in a template word document, the columns inserted successful, but the columns' width of the table has been shrank. Following is my code:
...
0
votes
0answers
280 views
Using OpenXMLWriter and OpenXMLReader to generate Open XML documents
We have a piece of code that generates a dump of all data held on an organisation from our application in order to respond to data protection act requests. This is generating openxml docx files.
...
0
votes
0answers
130 views
Can't apply formatting to text with WordML
I'm having trouble applying any formatting to text whatsoever using wordml in an XSLT file. I'm new to this, so I might have made a silly mistake here. Anyway, the text appears no problem when I apply ...
0
votes
0answers
155 views
embeding .svg file in WordML generated by xsl
I am stuck with the following task:
I am generating a WordML data via xsl. And it works perfectly.
But the problem occurs when I want to insert a .svg file's filepath in it - it simply doesn't show ...
