New Post: Change Orientation to landscape
http://stackoverflow.com/questions/10982307/how-to-change-page-orientation-from-c-sharp-with-open-xml-sdk
View ArticleNew Post: Change Orientation to landscape
Thanks onizet.This is what I have done.staticSectionProperties ChangeOrientationToLandscape(){SectionProperties sectionProperties =newSectionProperties();PageSize pageSize =newPageSize(){Width =...
View ArticleNew Post: Applying paragraph styles to cells in table.
I'm still trying to find a solution to this issue. Recent builds of HtmlToOpenXML have helped a little bit- I figured out that I can apply Word character styles to the rows and columns (as opposed to...
View ArticleNew Post: Add spacing or margin-top to paragraph
Hi, I read your lib does not support CSS styles. Would have been cool at least for the margin-top and margin-bottom e.g.:<p style="margin-top: 12pt;">bla bla</p> So if I need some extra...
View ArticleNew Post: Add spacing or margin-top to paragraph
After your post, I have added the support for margin. You can download the latest source code :)
View ArticleNew Post: Applying paragraph styles to cells in table.
Hum sounds interesting... If you accept to share your code, I will be happy to push it into the source code. For the spacing, I can reproduce the problem using Word 2010. But I don't find the menu to...
View ArticleNew Post: Add spacing or margin-top to paragraph
Thanks Olivier, I just downloaded the last "nightly" source code, tested it and it works! Good job and keep going! ;)
View ArticleNew Post: Add spacing or margin-top to paragraph
glad to see it works like a charm. Thank you :)
View ArticleNew Post: Add spacing or margin-top to paragraph
I just found a little issue regarding image resizing, but I guess that was an issue in the beta already... see under issue tracker I just reported it ;) Thanks again man, your library rocks, I'll blog...
View ArticleNew Post: Applying paragraph styles to cells in table.
Sure. I am still figuring out how to use this site, I will try to make my code available for the table style. If I can't do that for some reason, all I did was add the following to...
View ArticleNew Post: font size lost
html code like this: Looks how cool is <font size="x-large"><b>Open Xml</b></font>. Now with <font color="red"><u>HtmlToOpenXml</u></font>, it nevers...
View ArticleNew Post: Change Orientation to landscape
I've been interested in ways to add section breaks to Export to Word, both to do Landscape Orientation and also to reset page numbering. Thank you for posting this. So far, however, I haven't gotten...
View ArticleNew Post: Change Orientation to landscape
ddeforge> after all your commitment to this project, do you want to join me as a developer ? You can PM me to discuss offline about this
View ArticleNew Post: Change Orientation to landscape
Thanks for the offer. Sorry I was away for some time and would be starting on my project using your library in a week’s time and would love to contribute.From: onizet [email removed]Sent: Thursday, 7...
View ArticleNew Post: Applying paragraph styles to cells in table.
Hi guys, First of all, thank you for this wonderful library! It has helped me immensely. I faced this exact issue and I was able to resolve it by adding styles to each <p> tag within each...
View ArticleNew Post: Applying paragraph styles to cells in table.
To answer my own question, I figured this out by changing line 756 from the latest build in HtmlConverter.ProcessTag.cs from:properties.Add(new TableWidth() { Type = TableWidthUnitValues.Pct, Width =...
View ArticleNew Post: Applying paragraph styles to cells in table.
Ok I'm fine with the change, I commit the code Thaink you
View ArticleNew Post: How to set the Page top margin to less than 1"
Is there a way to change the page layout top margin to a custom value example .25"
View ArticleNew Post: How to set the Page top margin to less than 1"
Nevermind i found the answer: SectionProperties sectionProps = new SectionProperties(); PageMargin pageMargin = new PageMargin() { Top = 1008, Right = (UInt32Value)1008U, Bottom = 1008, Left =...
View ArticleNew Post: ul and ol tag
onizet wrote: Hi, I know the version 1.4.1 doesn't work well with ul/ol. I'm preparing the next release, which will come soon.For the moment, you can download the source code and recompile the library...
View Article