The Open XML SDK 2.0 for Microsoft Office is built on top of the System.IO.Packaging API and provides strongly typed part classes to manipulate Open XML documents.
0
votes
0answers
10 views
How to change the styles of a open xml Word Doc
I'm looking to make a small C# utility that would take whatever word document is supplied by the user, and change the styles to reflect those of a template. I think that using Open XML is the way to ...
-5
votes
1answer
36 views
Insert page numbers in OpenXML document using C#
How can I insert page numbers into my document with OpenXML using C#?
0
votes
0answers
16 views
Cannot insert the OpenXmlElement “newChild” because it is part of a tree
When I try to add border values to the table in a word document using open xml I get this error.
(Cannot insert the OpenXmlElement "newChild" because it is part of a
tree.)
Here is my code :
...
0
votes
0answers
29 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
1
vote
1answer
36 views
Excel Alternate Row
I have created a conditional format rule for alternate row style. It changes the cell fill for the cell to some color. The problem i have with this is that It override any other formatting that is ...
0
votes
1answer
24 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 ...
0
votes
1answer
63 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
32 views
Finding a graph part within a rich text control with OpenXML SDK
Hello fellow developers,
Being a newbie with the OpenXML SDK I cannot figure out how to retrieve a graph part that I've put in a rich text control (with a specific tag name).
For the moment I ...
0
votes
0answers
92 views
How to open a Existing xlsx file as a Pop up for SAVE/OPEN in C#
I have a ASP.net application in which we are creating xlsx files using OPENXML, we are able to create xlsx file & save it into one of the folder in application.
But Now we want to show that file ...
0
votes
0answers
27 views
Creating Line Chart in Excel (Open XML), Need to rename the Series on the Legend
I am creating a line chart in Excel. Here's a sample of the spreadsheet data. It is performance data, read and write latency.
VDisk Time Read Time Write Time
...
0
votes
2answers
107 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
1answer
28 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
2answers
30 views
Where can I learn more about OpenXML elements specfically for Excel?
I'm finding the various elements extremely confusing. Almost every element seems to have a "Part" associated with it, and I'm not sure how they are all glued together.
Workbook
WorkbookPart
...
0
votes
1answer
70 views
How can I get the Worksheetpart from name or sheet ID in OpenXML?
The following creates an XLSX, adds two worksheets with some data. I then want to be able to get the spreadsheet later based on name (or preferably the id) so I can add/modify the sheets at a later ...
0
votes
1answer
57 views
Generate C# code from Excel Documents? [closed]
Are there any tools out there that can generate (reflect) the codes that can be used to create an existing excel document? I know about and am currently using the Open Xml Productivity tool but the ...
0
votes
1answer
24 views
Adding Custom Heading to Word Document
I am trying to add custom headings to a Word Document using the Office Open XML SDK. I want to inherit the default Heading1 style but for some reason the code below creates a styles.xml file from ...
0
votes
1answer
58 views
Office Open XMl SDK Writing Numbers to Sheet
I am trying wo write Numbers from a DataTable to an Datasheet - unfortunately, this does not work as expected, e. g. the DataSheet is corrupted.
I am using the following code:
private void ...
0
votes
2answers
24 views
Get the ChartSpace from a ChartReference
I try to modify a PowerPoint Slide, which contains two Charts. My goal is to find the Chart and modify its data.
I already got the GraphicFrame which contains the Chart, and I got the relative ID of ...
3
votes
0answers
31 views
OpenXML - PresentationML - newMasterPart.SlideMaster.Preserve = false, is not working
I'm trying to use the Preserve attribute of Slide Master, in order to clear unreferenced Slide Masters.
My aim is to clone all slides in a presentation(has only one slide) to a base presentation(has ...
0
votes
0answers
44 views
From Microsoft.Office.Interop.Word to OpenXML
I use Microsoft.Office.Interop.Word to open an existing word file on the server (first of open i write the bookmarks present in the document).
This is my code:
...
0
votes
1answer
24 views
Get all Shapes with Charts from a Slide
I am working with a Powerpoint slide and try to extract the names of all shapes with charts from the slide. I can find out if the Slide has charts at all, but I am stuck as to how to find the ...
0
votes
1answer
175 views
Changing specific cell background color in excel sheet using OpenXml
My requirement to change background color of cells in a row of a excel sheet.
ex : if A1 cell value is less than 100, i need to show it in Red Background.
I searched alot, i found some code to ...
0
votes
1answer
202 views
Cannot insert the OpenXmlElement “newChild” because it is part of a tree
The Title states the error I am getting. I'm trying to hide all the text in a word doc using OpenXml. Currently when I try and append the Paragraph properties I receive the above error. I can't find ...
0
votes
0answers
56 views
Issues with altChunk - document showing garbled characters - ​ Â
I'm using altChunk to merge Rich text format (as XHTML) into a word document, the program seems to work but shows garbled characters (​  ) not sure whats causing it, please help!
The code is below:
...
0
votes
2answers
373 views
Read XLSX file in C#
I have an Excel Workbook I am trying to read using DocumentFormat.OpenXml.Spreadsheet;
using DocumentFormat.OpenXml.Packaging;
but I'm unsure on how to know when the value is a date. Shared strings ...
0
votes
0answers
153 views
Conditional Merge Fields Open XML SDK
I've looked all over and I can't seem to find any suitable information on Mail Merging (for Conditional Fields) using the Open XML SDK.
We have a conditional merge field, that is consequently made up ...
0
votes
1answer
119 views
How to insert before row in the OpenXml SDK SpreadsheetDocument Table?
This my insert after row code:
using (var spreadSheet = SpreadsheetDocument.Open(memoryStream, true, openSettings))
{
var worksheet = GetWorksheet(spreadSheet);
var worksheetPart = ...
0
votes
1answer
43 views
Open xml runtime requirements
I am creating a .NET application to manipulate word files using OpenXml SDK.
What are the prequisites (in runtime environment) to use Open Xml? Do i need to install Open XML SDK or toolkit on client ...
0
votes
1answer
116 views
Open XML - Word: Create tab with leading dots (.NET 3.5 - C#)
I want to create tab with leading dots like this in OpenXML for Word.
Do you know how to do it?
This is what I found:
http://officeopenxml.com/WPtab.php
...
2
votes
1answer
49 views
Extract text information from MS Word
i want to extract text information from MS Word document. The extracted information contain position, page number and style of text. Does anyone can suggest me How can i do That? what library can ...
0
votes
0answers
75 views
OpenXML Word Doc created on the fly in C# displays the wrong number of total pages on the first page
I am creating a word document on the fly in c# using openxml.
I have a different first page header and footer, and in the footers I have it display the current page and the total number of pages(1 of ...
2
votes
2answers
1k views
ASP.NET C# create word document with Open XML
I am creating a sample handler to generate simple Word document.
This document will contains the text Hello world
This is the code I use (C# .NET 3.5),
I got the Word document created but there is ...
0
votes
0answers
69 views
VISIO 2013 Automation for OrgChart programatically creating VSDX
Trying to create a orgchart on server in vsdx format.
Is there any Visio 2013 SDK which assist build the Org chart ground up .I opened the Visio 2013 vsdx file and found it extremely complicated with ...
1
vote
2answers
212 views
Embed word document into another WITHOUT icon
How to embed a word document into another word document via OpenXML SDK, but showing content, not an icon of word? Such, as we do it manually in word: Insert object from file -> WITHOUT checking ...
0
votes
1answer
31 views
OpenXML Headers
I have a docx which I am processing using the OpenXML SDK.
The doc.MainDocumentPart.HeaderParts property has 2 items in it, yet when I open the docx as a zip file, it has header1.xml up to ...
0
votes
1answer
39 views
Can i Read RTF and Doc File Using Open Xml?
Is it possible to read RTF and Doc Files using OpenXml?
or do i need to convert it into Docx Format?
Thanks in Advance
0
votes
0answers
146 views
OpenXML SDK C# Error in Excel Speadsheet when adding nummeric cell value
I'm using OpenXML to export data from a Website to Excel. I have a few text fields (e.g. Project Infos) and many decimal values that Need to be exported. The Export of the text values is no Problem, ...
0
votes
0answers
105 views
How to use same docx Template multiple time in the same file
I have to generate letter to customers using docx template.
I got it working where it generate a letter for one customers using docx template (OpenXml 2.0, C#)
What i am having trouble is to ...
0
votes
1answer
28 views
Manipulating text of a document while it's open
Is it possible to extract, modify or simply read text in an Office while user types in words? It it possible through OpenXML SDK & InterOp library?
Thanks.
5
votes
1answer
113 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 ...
0
votes
0answers
32 views
Microsoft Word - Table In Header Validation - Bug
Working with OpenXML, and see errors with my headers.
I discover that if I open a new document in Word 2010, put a table into the header, save and try to validate in OpenXML Validation/Productivity ...
0
votes
2answers
440 views
OpenXML SDK having borders for cell
I have the following code that adds a cell with values and datatype for that cell in OpenXML SDK:
Cell cell = InsertCellInWorksheet(column, row, worksheetPart);
...
0
votes
1answer
45 views
Repaire Message in Office 2013 but open fine in other versions
I've generated a presentation using OpenXML SDK 2.0 which opens fine in Office 2007 or 2010 but gives Repaire message in Office 2013, OpenXML SDK Productivity tool validation functionality didn't ...
2
votes
1answer
67 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
182 views
Error:We found Unreadable content in .xlsx file,do we want to recover as much as possible ? if you trust the code press yes
i have done to open the already exixting excel file and updated it with openxml in c#, iam done with it , i can open the excel file with data updated. but when i click on the excel file it is ...
1
vote
2answers
192 views
Does the Open XML SDK 2.0 for Microsoft Office support Office 2007
If I browse to the Open XML SDK 2.0 for Microsoft Office page and select "Other Versions" > "Office 2007", it takes me to Open XML Format SDK 1.0. Does this mean that the Open XML SDK 2.0 for ...
0
votes
1answer
86 views
Better way of getting Font info from openxml
I'm filling out a kind of template Word file (not a .dot) with OpenXML. The problem i ran into is that when i add new text to the document uses the default font and font size of the Word document.
I ...
0
votes
1answer
388 views
VB.NET OpenXML to Read Excel File
I have been searching for a way to effectively read an Excel file and have found the following code for parsing and reading a large spreadsheet:
Public Sub ExcelProcessing()
Dim strDoc As String ...
3
votes
2answers
88 views
Embed OpenXML SDK Files In .NET Executable
The Microsoft OpenXML SDK version 2.0 ships with a ~5111 KiB .NET assembly (DLL), and a ~14436 KiB uncompressed XML file. Both of these are required to successfully use the SDK. (Important update: ...
0
votes
1answer
132 views
With OpenXML how do I get the StyleIndex of an existing style in an excel spreadsheet
I am editing an existing excel spreadsheet with an existing cell Style in it called "myFavouriteStyle".
Using OpenXML SDK V2 c# how do I find the StyleIndex of that style so I can apply it to new ...





