Questions regarding reading and writing of Microsoft Office Open XML files either through direct manipulation of the XML files contained in a zip package or through the Microsoft Office Open XML SDK.

learn more… | top users | synonyms (1)

0
votes
0answers
15 views

Open XML SDK - how to insert image into a Presentation?

I cannot seem to find any examples online and the Open XML SDK is - to be kind - difficult to explore. How does one go about adding an image to the first slide of a PresentationDocument
0
votes
1answer
21 views

EPPlus not caluculating formula output after binding

I am started using EPPlus from last 2weeks. I am strucked at cell formulas. My code is like below ExcelPackage pck = new ExcelPackage(@"D:\MYSheets\EmptyFile.xlsx"); var ws = ...
0
votes
1answer
39 views

Event code: 3005 Event message: An unhandled exception has occurred while attaching excel

I have an application written in C#. In this application, i will dynamically create an excel on server and Write the List in to an excel and attach this excel in Email and send this excel to Users. ...
0
votes
1answer
19 views

Converting HTML to Word Docx with style intact

I know there are already questions similar to this, and suggested Open XML and all. I am using Open XMl but it work only with inline style. is there any solution to this, or any other better way to ...
-1
votes
1answer
14 views

Why did MS migrate from COM to OPEN xml [closed]

Why did Office (Word/Excel etc) adopt to Open XML from COM ? Any particular reason(s) ? Or is it just for programming purposes ? Also , How do i use HTML5/JS/CSS with Office any articles to point ...
0
votes
0answers
6 views

How to generate content index for OpenXML

I'm generating OOXML documents programatically with Apache POI, and one of my purposes is generate the content index of the document (as if we click on references > content table on Microsoft Office ...
0
votes
0answers
34 views

OpenXML .Net Excel — how to preserve background color of existing cell?

This class allows an existing workbook to be opened, a worksheet to be specified, and the WriteCell Method in this class allows a cell to be written to (with optional style arguments passed). The ...
0
votes
1answer
26 views

Set custom BackgroundColor of a Excel sheet cell using epplus c#

I am new to EEPlus. I am stuck at applying color for a cell in my Excel sheet. I have a color code #B7DEE8, this color I need to apply for the cell. I got this code.. ...
0
votes
0answers
35 views

Writing to Excel cell with OpenXml while preserving cell's existing background

We use documentFormat.OpenXML in this .Net class to read and write to Excel cells in an existing Excel worksheet. When using the WriteCell method, you may pass an optional backcolor attribute. If no ...
0
votes
1answer
22 views

What is the proper way to build a paragraph with OpenXML?

I'm trying to create a docx file based upon an existing paragraph p. I'm not trying to clone the paragraph (eventually I want to modify the text before writing to newGraph) Dim newGraph ...
2
votes
2answers
37 views

Git and OpenXML documents

As OpenXML is basically XML files in a zip archive, I'd like to know if Git can handle OpenXML documents for version control and merging operations and diff comparison. thanks
0
votes
1answer
25 views

Reading Signature lines using OpenXMlSDK

i just started office development and have been trying to read a word 2013 document that holds signature fields in it using open xml sdk can some one help me how to do that. using (var document = ...
0
votes
0answers
18 views

Convert Open Office XML Symbols to Html Entities

I want to read special symbols inserted in ms-word 2007 or later using Open Office XML and have to display it in html page using ASP.NET MVC 4. I have read the chars of the symbol using var ...
1
vote
1answer
56 views

Can i create an image from an excel file using c#

Is there a way to take an image of an excel file without using office.interop dlls ? I succeeded to embed an excel file into a word document, but i need to show an image of this excel file on the ...
0
votes
1answer
34 views

How to add hyperlink to Excel simple shape using apache poi?

I use Microsoft Excel 2007. I have a simple shape on the first excel sheet. I would like to add a hyperlink on this simple shape which refer to another sheet on the specific row and column. I make a ...
1
vote
1answer
19 views

FeedData into a FooterPart

I've created a word document docx and am now in the process of "reverse engineering" it with the OpenXml productivity tool. I'm using .FeedData() to feed the styles, theme etc. into the document, ...
0
votes
2answers
41 views

OpenXML writer column

I have a question to ask using OpenXMLWriter. I am currently using the code below to create my excel file, but I want to set up width of the columns. How should I do it? Because I tried to write ...
0
votes
0answers
20 views

DOCX to RTF without Microsoft.Office.Interop.Word

Can I convert a docx file in c# program, to RTF without using Microsoft.Office.Interop.Word.dll? Maybe with Openxml library.
0
votes
1answer
13 views

Does Apache POI support the “strict” variant of ISO/IEC 29500?

With M$ Excel 2013 there are 2 variants of XLSX, the "Transitional" which M$ supported with XLSX in Excel 2010, and "Strict" = OOXML. Is POI able to read and write the latter? If so, from which ...
0
votes
0answers
23 views

Word XML document duplicated footer

I tried to create footer in MS Word document from this solution. It's ok, footer looks great, but text from footer duplicated in document body. How can i remove this? Screenshot of document: ...
0
votes
1answer
28 views

Open XML Tutorial clarification

Trying to learn how to use OOXML to replace tokens win a word document by following this tutorial Everything has been going pretty well until I hit this Next, create the custom XML file containing ...
0
votes
1answer
55 views

OpenXML - refresh Excel sheet after cell update

I have a class that reads & writes Excel (xlsx) cells using OpenXML SDK. The class is based of the most voted answer from here: Open XML SDK 2.0 - how to update a cell in a spreadsheet? I need to ...
0
votes
1answer
43 views

How to set blank space after a table in a docx document (working with apache poi)

I've been trying to create tables and make them to leave some space between its bottom border and whatever comes after the table (usually text). As far as I have crawl through ooxml specification I ...
0
votes
2answers
87 views

Open XML SDK 2.5 + SharePoint 2013 - docx-file empty

I'm trying to generate a simple docx-file in SharePoint 2013 using Open XML SDK 2.5. My function successfully generates a docx-file in the SharePoint-library, but when I try to open it, it is empty ...
0
votes
0answers
12 views

Include Blank in List of Excel using OpenXML sdk

I have tried below code to include the blank value in the list of Excel which is created by OpenXML sdk, but it is not working. DataValidations dataValidations1 = new DataValidations() { Count = ...
0
votes
0answers
23 views

Can't read the full content in document.xml in openxml using c#

How to read the document.xml file contents using OpenXML Sdk as a library. i tried reading it, but some tags omitted in the object of MainDocumentPart.Document like <w:noproof/> and ...
0
votes
1answer
46 views

How to convert Open Xml Math Equation to MathML

How can i convert OpenXml math equation (m:OMathPara tag) to MathML. Does there exist any converter library? My problem is importing data from MS Word and saving it in database and viewing in ...
0
votes
1answer
24 views

Office Open XML: Drawing Dashed Line in Chart

Using office open XML SDK I have drawn a scatter chart with smooth line but wondering how to change the line style for the series to show dashed line?
0
votes
0answers
23 views

Is it possible to open an unzipped XLSX file?

I'm using OpenXML on XLSX files, and am unzipping the XLSX to a directory structure and making modifications through a text editor. Is there a way to have excel open this directory structure without ...
3
votes
1answer
67 views

How to get value shown in cell from .xlsx using open XML C#

Im new to C# and open XML, so please be patient with my ingnorance. I have this problem: I need to get cell value from .xlsx file. I can do that using XlGetCellValue method. But When one cell (for ...

1 2 3 4 5 39
15 30 50 per page