5
votes
1answer
97 views

How to apply a character style to a run in a wordprocessing document?

When I create a paragraph style with openxml sdk 2 in c# and apply it to a paragraph every thing will be correct and it will run without any problem. But with the codes below, when I create a ...
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 ...
0
votes
0answers
90 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: ...
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 ...
0
votes
0answers
507 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
2answers
335 views

Relationship error when trying to embed and image into a Word document

I add a PNG image to a word 2010 document like this: var imagePart = report.MainDocumentPart.AddImagePart(ImagePartType.Png); var imagePath = Path.Combine(imageFolder, "1.png"); var stream = new ...
1
vote
1answer
946 views

cannot preserve space between runs

i want to generate a word document as an input i have this string "open packaging conventions" and each word will have a different style the result should be open packaging conventions ...
0
votes
1answer
455 views

Insert image from byte array into OpenXML CustomXmlBlock

I'm working with a template document that uses CustomXmlBlocks as placeholders to place tables and other information. I need to be able to place an image into one of these blocks somehow... even if it ...
1
vote
2answers
813 views

Line Breaks In CustomXMLPart

I'm updating a word document by rewriting the CustomXMLPart file. I've basically followed this tutorial: ...
4
votes
1answer
462 views

OpenXML: Anyway to see if a Word Document fits one page

While I doubt it, if I open up a word document using OpenXML sdk in C# and add some info, is there any way for me to see if it still fits one page? If it doesn't I wan't to reduce font size on ...
1
vote
0answers
286 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 ...
7
votes
2answers
1k views

Comparing Docx files using OOXML

How can I read word-by-word (with styles) from a docx file. I want to compare two docx files word-by-word and based on the differences I have to write into another docx file (using c# and OOXML). I ...