New Post: Suggestion: add "image/x-png" in addition to "image/png" to...
Ok done ! It was easy :) Thank you for your feedback
View ArticleNew Post: font size lost
It's fixed now. I was mis-reading the Font attribute. You can get the latest source code. Sorry for delay
View ArticleNew Post: Can I add html to a specific content Control in docx file
Hi, I have to add a html string(not an entire html document) to a placeholder in a docx file. Is there a way to do that?
View ArticleNew Post: Can I add html to a specific content Control in docx file
Hi, The result of the conversion with this library is a list of OpenXML Paragraphs. You can insert them anywhere. (see this post). As an alternative, you can use AltChunks to insert "raw" html See this...
View ArticleNew Post: ul and ol tag
I just got the latest code and compiled myself. But I still have issues on ul-tags. In Word 2010 they are not shown als list, but as normal paragraphs. Wordviewer works somehow. My tags get rendered...
View ArticleNew Post: OpenXML Validation patch
First, a bit of background. We have taken an interest in getting our OpenXML Word documents to pass schema validation, in other words this check: public static void...
View ArticleNew Post: OpenXML Validation patch
Hello, Thank you very much for your patch. I will include it soonly. If you have any other bug fixes, do not hesitate to come back to me. It's nice to know there is again some people showing some...
View ArticleNew Post: OpenXML Validation patch
Schema validation at least assures us that the file will load in the Word application. Obviously if it fails validation it may still load, but at least this way we can be certain that if it passes...
View ArticleNew Post: Landscape or portrait orientation in open xml document
Please, explain how can i change orientation of document programmatically using C#?
View ArticleNew Post: Landscape or portrait orientation in open xml document
If your question refer to this library, you could define the style attribute "page-orientation" on your body tag.<bodystyle="page-orientation:landscape"> ... </body>You could have also...
View ArticleNew Post: OpenXML Validation patch
This discussion has been copied to a work item. Click here to go to the work item and continue the discussion.
View ArticleNew Post: OpenXML Validation patch
Hello, I have merged your code inside the main branch. Finally, I had a review on more tags (especially tables and all the styles) and refactor lots of my code to make it works. I rely a bit on the...
View ArticleNew Post: OpenXML Validation patch
excellent...I'll download the main source code again and update. I'll let you know if anything else pops up.cc
View ArticleNew Post: OpenXML Validation patch
Yes let me know if that fixes your problem on Google Viewer. Otherwise, indicate me how to reproduce your bug and I will test myself (sorry, I'm not used to Google Docs).
View ArticleNew Post: image text align?
Hi, is it possible to have a picture on the left, and the text aligned on the right?<img src="image url" style="float: left;" /> is not supported, so I was wondering if I have to wrap the image...
View ArticleNew Post: image text align?
As there is actually no support for float, I would suggest to try with a <table> and 2 columns. I have seen your issue with Headings,, I will fix that soon.
View ArticleNew Post: OpenXML Validation patch
Hi, Unfortunately, it does not. It does behave differently - I stillcan't view it within the google docs viewer but *can* download it. So it is slightly better but still fails the validation, I should...
View ArticleNew Post: OpenXML Validation patch
We are really pleased you decided to accept our patch and try to improve validation - again, thanks so much! We recently started having a new validation error in production for a particular bit of...
View ArticleNew Post: font size lost
Hello, But how does it work for my exemple? ```<br class="ibp-rteFontSize-5"/><span style="font-size: 16px">My Text </span></div>``` When I write ( in C#):attrValue =...
View ArticleNew Post: font size lost
Where is coming this code? Not from the library or from an very old version. You need to transform your Html unit to OpenXml unit (there are not the same and not on the same scale). Use the class...
View Article