DocX
DocX copied to clipboard
Fast and easy to use .NET library that creates or modifies Microsoft Word files without installing Word.
As far as I understand this lib currently doesn't support net 6. Have you plans to add such support?
Hi! **Following error:** If you load a Document and insert rows in a table, the paragraph count isn't updating. Instead you have to load the document anew. I've provided an...
How can I set custom y Axis scale value in bar chart. In my graph I want to change my scale 0 to 100 instead 1 to 120. And also...
Hi. Can be made such thing? To insert a table which repeats its header on each page? Thanks
I have a word document that has check boxes. I want to set the value of those based on the value . I cant seems to find any documentation on...
Hi, I'm working on a templating engine for docx, in which I need to create new elements and deeply modify the xml. When I have my own Paragraph (not yet...
In xceed Words for NET 2.3 I constructed a one row table with two cells. I place a picture in the cells of the table. When I add the table...
If we open `.docm` document and then save it we unexpectedly get a new file named `*.docm.docx` So I have to rename it manually for now. Thanks! I use 2.1.0...
I've encountered a strange error: ``` Paragraph par; ... // no error here par.SpacingBefore(12f); par.SpacingAfter(6f); ... // no error here par.SpacingBefore(0); par.SpacingAfter(0); ... // error on second line par.SpacingBefore(12f); par.SpacingAfter(0);...