<?xml version="1.0" encoding="UTF-8" ?>
<?xml-stylesheet type="text/xsl" href="http://openxmldeveloper.org/rss.xsl" media="screen"?><rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:slash="http://purl.org/rss/1.0/modules/slash/" xmlns:wfw="http://wellformedweb.org/CommentAPI/"><channel><title>WordprocessingML</title><link>http://openxmldeveloper.org/forums/13/ShowForum.aspx</link><description /><dc:language>en-US</dc:language><generator>CommunityServer 2.0 (Build: 60526.2668)</generator><item><title>Re: Cutting WordML Documents into Individual Pages.</title><link>http://openxmldeveloper.org/forums/thread/4073.aspx</link><pubDate>Thu, 12 Feb 2009 23:24:51 GMT</pubDate><guid isPermaLink="false">1ff61f26-0981-41c7-ad52-ff725e9b1da8:4073</guid><dc:creator>cauld</dc:creator><slash:comments>0</slash:comments><comments>http://openxmldeveloper.org/forums/thread/4073.aspx</comments><wfw:commentRss>http://openxmldeveloper.org/forums/commentrss.aspx?SectionID=13&amp;PostID=4073</wfw:commentRss><description>Hi there Ralph.&lt;br /&gt;&lt;br /&gt;I alluded above to the implicit page model in OOXML (contrast this with say printing formats like PDF and XPS). This is obviously because different apps may want to render their breaks at different places. Think Word on a desktop vs an iPhone...&lt;br /&gt;&lt;br /&gt;So you've obviously got one approach that you're starting to work with.&lt;br /&gt;To answer your specific question here:&lt;br /&gt;The numbers are in Twips.&lt;br /&gt;See&lt;br /&gt;http://openiso.org/Ecma/376/Part4/2.6.13&lt;br /&gt;and&lt;br /&gt;http://openiso.org/Ecma/376/Part4/2.18.105&lt;br /&gt;&lt;br /&gt;A Twip is equivalent to 1/1440th of an inch.&lt;br /&gt;&lt;br /&gt;Another option you might consider if you want to create hard breaks that map to a specific application (e.g. Microsoff Word 2007) i8s to process the document in that tool and insert the breaks: e.g. use word automation to insert breaks for you.&lt;br /&gt;&lt;br /&gt;</description></item><item><title>Re: Cutting WordML Documents into Individual Pages.</title><link>http://openxmldeveloper.org/forums/thread/4072.aspx</link><pubDate>Thu, 12 Feb 2009 22:01:09 GMT</pubDate><guid isPermaLink="false">1ff61f26-0981-41c7-ad52-ff725e9b1da8:4072</guid><dc:creator>Ralph Boester</dc:creator><slash:comments>0</slash:comments><comments>http://openxmldeveloper.org/forums/thread/4072.aspx</comments><wfw:commentRss>http://openxmldeveloper.org/forums/commentrss.aspx?SectionID=13&amp;PostID=4072</wfw:commentRss><description>Baby steps it would seem.&lt;br&gt;&lt;br&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Along those lines I am trying to do said estimation and am at a bit of a road block.&lt;br&gt;&lt;br&gt;When attempting to get the page size I am grabbing the following section from the /word/document.xml file:&lt;br&gt;&lt;br&gt;&amp;lt;w:sectPr w:rsidR="006D7F8D" w:rsidRPr="006D7F8D" w:rsidSect="006D7F8D"&amp;gt;&lt;br&gt;&amp;nbsp; &amp;lt;w:pgSz w:w="14400" w:h="14400" w:orient="landscape" w:code="1" /&amp;gt; &lt;br&gt;&amp;nbsp; &amp;lt;w:pgMar w:top="0" w:right="0" w:bottom="0" w:left="0" w:header="720"&lt;br&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; w:footer="720" w:gutter="0" /&amp;gt; &lt;br&gt;&amp;nbsp; &amp;lt;w:cols w:space="720" /&amp;gt; &lt;br&gt;&amp;nbsp; &amp;lt;w:docGrid w:linePitch="360" /&amp;gt; &lt;br&gt;&amp;lt;/w:sectPr&amp;gt;&lt;br&gt;&lt;br&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; My issue is that I am unsure of what these numbers mean.&amp;nbsp; Mainly what units they are in.&amp;nbsp; I looked through the Open XML SDK but it was not terribly enlightening on the units/makeup of these numbers.&amp;nbsp; IE the 14400.&lt;br&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;br&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; I know the document is 10in x 10in&amp;nbsp; so I could work out a ratio but it would probably be better if I understood these numbers as apposed to hacking them.&lt;br&gt;&lt;br&gt;Thanks,&lt;br&gt;Ralph&lt;br&gt;&lt;br&gt;</description></item><item><title>Re: Cutting WordML Documents into Individual Pages.</title><link>http://openxmldeveloper.org/forums/thread/4071.aspx</link><pubDate>Thu, 12 Feb 2009 18:28:05 GMT</pubDate><guid isPermaLink="false">1ff61f26-0981-41c7-ad52-ff725e9b1da8:4071</guid><dc:creator>Ralph Boester</dc:creator><slash:comments>0</slash:comments><comments>http://openxmldeveloper.org/forums/thread/4071.aspx</comments><wfw:commentRss>http://openxmldeveloper.org/forums/commentrss.aspx?SectionID=13&amp;PostID=4071</wfw:commentRss><description>Chris,&lt;br&gt;&lt;br&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; Thanks for the reply.&lt;br&gt;&lt;br&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; This isn't really a good option.&amp;nbsp; Whenever people interact with documents in any way they have a very strong concept of "page".&amp;nbsp; ie&amp;nbsp;&amp;nbsp; "What page is that on?", "Which page are you looking at?"etc ...&lt;br&gt;&lt;br&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; In the same manner I need to have a concept of page for these documents.&amp;nbsp; Obviously anything that I cook up won't be exact, and it does not need to be.&amp;nbsp; If you get people close generally they are good to go.&lt;br&gt;&lt;br&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; My current strategy is to run through each paragraph find its format and determine how many pixels tall and wide the text (or object) is.&amp;nbsp; With a running count I am keeping track of where I am.&lt;br&gt;ie long strings have to wrap into multiple lines, pictures take up multiple lines etc...&lt;br&gt;&lt;br&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; I am interested to see how this works as from a general over view it seems like it would be a very slow process, but it is just XML manipulation so it probably won't be slow.&lt;br&gt;&lt;br&gt;Wish me luck, and as always,&amp;nbsp; comments tips and tactics are more then welcome.&lt;br&gt;&lt;br&gt;Thanks,&lt;br&gt;Ralph&lt;br&gt;</description></item><item><title>Re: Cutting WordML Documents into Individual Pages.</title><link>http://openxmldeveloper.org/forums/thread/4040.aspx</link><pubDate>Sun, 08 Feb 2009 21:09:12 GMT</pubDate><guid isPermaLink="false">1ff61f26-0981-41c7-ad52-ff725e9b1da8:4040</guid><dc:creator>cauld</dc:creator><slash:comments>0</slash:comments><comments>http://openxmldeveloper.org/forums/thread/4040.aspx</comments><wfw:commentRss>http://openxmldeveloper.org/forums/commentrss.aspx?SectionID=13&amp;PostID=4040</wfw:commentRss><description>Ralph,&lt;br /&gt;&lt;br /&gt;So the question comes down to what is meant by a page break.&lt;br /&gt;Obviously there are explicit breaks and you've worked out how to split by those already.&lt;br /&gt;The  scenario you talk about is an implicit break. i.e. whether the break is visible really comes down to the client that is displaying the content- as an example of this, try looking at the document in the Word 2007 reading view and you'll find that the implicit page breaks happen in different places.&lt;br /&gt;&lt;br /&gt;You need to really think of the document as a continuous document and work with the explicit page breaks only.&lt;br /&gt;&lt;br /&gt;HTH&lt;br /&gt;Chris&lt;br /&gt;</description></item><item><title>Re: Cutting WordML Documents into Individual Pages.</title><link>http://openxmldeveloper.org/forums/thread/4025.aspx</link><pubDate>Tue, 03 Feb 2009 17:55:50 GMT</pubDate><guid isPermaLink="false">1ff61f26-0981-41c7-ad52-ff725e9b1da8:4025</guid><dc:creator>Ralph Boester</dc:creator><slash:comments>0</slash:comments><comments>http://openxmldeveloper.org/forums/thread/4025.aspx</comments><wfw:commentRss>http://openxmldeveloper.org/forums/commentrss.aspx?SectionID=13&amp;PostID=4025</wfw:commentRss><description>Well, had what I thought was a working solution.&amp;nbsp;&amp;nbsp; I was looping through the document using the &amp;lt;w:lastRenderedPageBreak /&amp;gt; elements.&amp;nbsp;&amp;nbsp;&amp;nbsp; This was going fine till I realized that if you simply hit [Enter] to create the page break.&amp;nbsp;&amp;nbsp; &lt;br&gt;&lt;br&gt;IE type type&amp;nbsp; enter enter {go over the page break} enter enter type type&lt;br&gt;&lt;br&gt;In that scenario you get absolutely no indication that there is a page break there in the XML.&lt;br&gt;&lt;br&gt;**DOCUMENT.XML**&lt;br&gt;&lt;div class="e"&gt;
&lt;div class="c"&gt;&lt;a class="b"&gt;-&lt;/a&gt; &lt;span class="m"&gt;&amp;lt;&lt;/span&gt;&lt;span class="t"&gt;w:p&lt;/span&gt;&lt;span class="t"&gt; w:rsidR&lt;/span&gt;&lt;span class="m"&gt;="&lt;/span&gt;&lt;b&gt;00266B4A&lt;/b&gt;&lt;span class="m"&gt;"&lt;/span&gt;&lt;span class="t"&gt; 
w:rsidRDefault&lt;/span&gt;&lt;span class="m"&gt;="&lt;/span&gt;&lt;b&gt;00266B4A&lt;/b&gt;&lt;span class="m"&gt;"&lt;/span&gt;&lt;span class="t"&gt; w:rsidP&lt;/span&gt;&lt;span class="m"&gt;="&lt;/span&gt;&lt;b&gt;00266B4A&lt;/b&gt;&lt;span class="m"&gt;"&lt;/span&gt;&lt;span class="m"&gt;&amp;gt;&lt;/span&gt;&lt;/div&gt;
&lt;div&gt;
&lt;div class="e"&gt;
&lt;div class="c"&gt;&lt;a class="b"&gt;-&lt;/a&gt;&amp;nbsp;&amp;nbsp; &lt;span class="m"&gt;&amp;lt;&lt;/span&gt;&lt;span class="t"&gt;w:r&lt;/span&gt;&lt;span class="m"&gt;&amp;gt;&lt;/span&gt;&lt;/div&gt;
&lt;div&gt;
&lt;div class="e"&gt;
&lt;div&gt;&lt;span class="b"&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp;&lt;/span&gt; &lt;span class="m"&gt;&amp;lt;&lt;/span&gt;&lt;span class="t"&gt;w:t&lt;/span&gt;&lt;span class="ns"&gt; xml:space&lt;/span&gt;&lt;span class="m"&gt;="&lt;/span&gt;&lt;b class="ns"&gt;preserve&lt;/b&gt;&lt;span class="m"&gt;"&lt;/span&gt;&lt;span class="m"&gt;&amp;gt;&lt;/span&gt;&lt;span class="tx"&gt;All my fun TEXT.&lt;/span&gt;&lt;span class="m"&gt;&amp;lt;/&lt;/span&gt;&lt;span class="t"&gt;w:t&lt;/span&gt;&lt;span class="m"&gt;&amp;gt;&lt;/span&gt; 
&lt;/div&gt;&lt;/div&gt;
&lt;div&gt;&lt;span class="b"&gt;&lt;/span&gt;&lt;span class="m"&gt;&amp;lt;/&lt;/span&gt;&lt;span class="t"&gt;w:r&lt;/span&gt;&lt;span class="m"&gt;&amp;gt;&lt;/span&gt;&lt;span class="b"&gt;&lt;br&gt;&lt;/span&gt;&lt;span class="m"&gt;&amp;lt;/&lt;/span&gt;&lt;span class="t"&gt;w:p&lt;/span&gt;&lt;span class="m"&gt;&amp;gt;&lt;/span&gt;&lt;/div&gt;&lt;/div&gt;&lt;/div&gt;
&lt;/div&gt;&lt;/div&gt;
&lt;div class="e"&gt;
&lt;div&gt;&lt;span class="b"&gt;&amp;nbsp;&lt;/span&gt; &lt;span class="m"&gt;&amp;lt;&lt;/span&gt;&lt;span class="t"&gt;w:p&lt;/span&gt; &lt;span class="t"&gt;w:rsidR&lt;/span&gt;&lt;span class="m"&gt;="&lt;/span&gt;&lt;b&gt;0061403F&lt;/b&gt;&lt;span class="m"&gt;"&lt;/span&gt;&lt;span class="t"&gt; 
w:rsidRDefault&lt;/span&gt;&lt;span class="m"&gt;="&lt;/span&gt;&lt;b&gt;0061403F&lt;/b&gt;&lt;span class="m"&gt;"&lt;/span&gt;&lt;span class="t"&gt; w:rsidP&lt;/span&gt;&lt;span class="m"&gt;="&lt;/span&gt;&lt;b&gt;00266B4A&lt;/b&gt;&lt;span class="m"&gt;"&lt;/span&gt;&lt;span class="m"&gt; 
/&amp;gt;&lt;/span&gt; &lt;/div&gt;&lt;/div&gt;
&lt;div class="e"&gt;
&lt;div&gt;&lt;span class="b"&gt;&amp;nbsp;&lt;/span&gt; &lt;span class="m"&gt;&amp;lt;&lt;/span&gt;&lt;span class="t"&gt;w:p&lt;/span&gt; &lt;span class="t"&gt;w:rsidR&lt;/span&gt;&lt;span class="m"&gt;="&lt;/span&gt;&lt;b&gt;00266B4A&lt;/b&gt;&lt;span class="m"&gt;"&lt;/span&gt;&lt;span class="t"&gt; 
w:rsidRDefault&lt;/span&gt;&lt;span class="m"&gt;="&lt;/span&gt;&lt;b&gt;00266B4A&lt;/b&gt;&lt;span class="m"&gt;"&lt;/span&gt;&lt;span class="t"&gt; w:rsidP&lt;/span&gt;&lt;span class="m"&gt;="&lt;/span&gt;&lt;b&gt;00266B4A&lt;/b&gt;&lt;span class="m"&gt;"&lt;/span&gt;&lt;span class="m"&gt; 
/&amp;gt;&lt;/span&gt; &lt;/div&gt;&lt;/div&gt;
&lt;div class="e"&gt;
&lt;div&gt;&lt;span class="b"&gt;&amp;nbsp;&lt;/span&gt; &lt;span class="m"&gt;&amp;lt;&lt;/span&gt;&lt;span class="t"&gt;w:p&lt;/span&gt; &lt;span class="t"&gt;w:rsidR&lt;/span&gt;&lt;span class="m"&gt;="&lt;/span&gt;&lt;b&gt;00266B4A&lt;/b&gt;&lt;span class="m"&gt;"&lt;/span&gt;&lt;span class="t"&gt; 
w:rsidRDefault&lt;/span&gt;&lt;span class="m"&gt;="&lt;/span&gt;&lt;b&gt;00266B4A&lt;/b&gt;&lt;span class="m"&gt;"&lt;/span&gt;&lt;span class="t"&gt; w:rsidP&lt;/span&gt;&lt;span class="m"&gt;="&lt;/span&gt;&lt;b&gt;00266B4A&lt;/b&gt;&lt;span class="m"&gt;"&lt;/span&gt;&lt;span class="m"&gt; 
/&amp;gt;&lt;/span&gt; &lt;/div&gt;&lt;/div&gt;
&lt;div class="e"&gt;
&lt;div&gt;&lt;span class="b"&gt;&amp;nbsp;&lt;/span&gt; &lt;span class="m"&gt;&amp;lt;&lt;/span&gt;&lt;span class="t"&gt;w:p&lt;/span&gt; &lt;span class="t"&gt;w:rsidR&lt;/span&gt;&lt;span class="m"&gt;="&lt;/span&gt;&lt;b&gt;00266B4A&lt;/b&gt;&lt;span class="m"&gt;"&lt;/span&gt;&lt;span class="t"&gt; 
w:rsidRDefault&lt;/span&gt;&lt;span class="m"&gt;="&lt;/span&gt;&lt;b&gt;00266B4A&lt;/b&gt;&lt;span class="m"&gt;"&lt;/span&gt;&lt;span class="t"&gt; w:rsidP&lt;/span&gt;&lt;span class="m"&gt;="&lt;/span&gt;&lt;b&gt;00266B4A&lt;/b&gt;&lt;span class="m"&gt;"&lt;/span&gt;&lt;span class="m"&gt; 
/&amp;gt;&lt;/span&gt; &lt;/div&gt;&lt;/div&gt;
&lt;div class="e"&gt;
&lt;div&gt;&lt;span class="b"&gt;&amp;nbsp;&lt;/span&gt; &lt;span class="m"&gt;&amp;lt;&lt;/span&gt;&lt;span class="t"&gt;w:p&lt;/span&gt; &lt;span class="t"&gt;w:rsidR&lt;/span&gt;&lt;span class="m"&gt;="&lt;/span&gt;&lt;b&gt;00266B4A&lt;/b&gt;&lt;span class="m"&gt;"&lt;/span&gt;&lt;span class="t"&gt; 
w:rsidRDefault&lt;/span&gt;&lt;span class="m"&gt;="&lt;/span&gt;&lt;b&gt;00266B4A&lt;/b&gt;&lt;span class="m"&gt;"&lt;/span&gt;&lt;span class="t"&gt; w:rsidP&lt;/span&gt;&lt;span class="m"&gt;="&lt;/span&gt;&lt;b&gt;00266B4A&lt;/b&gt;&lt;span class="m"&gt;"&lt;/span&gt;&lt;span class="m"&gt; 
/&amp;gt;&lt;/span&gt; &lt;/div&gt;&lt;/div&gt;
&lt;div class="e"&gt;
&lt;div&gt;&lt;span class="b"&gt;&amp;nbsp;&lt;/span&gt; &lt;span class="m"&gt;&amp;lt;&lt;/span&gt;&lt;span class="t"&gt;w:p&lt;/span&gt; &lt;span class="t"&gt;w:rsidR&lt;/span&gt;&lt;span class="m"&gt;="&lt;/span&gt;&lt;b&gt;00266B4A&lt;/b&gt;&lt;span class="m"&gt;"&lt;/span&gt;&lt;span class="t"&gt; 
w:rsidRDefault&lt;/span&gt;&lt;span class="m"&gt;="&lt;/span&gt;&lt;b&gt;00266B4A&lt;/b&gt;&lt;span class="m"&gt;"&lt;/span&gt;&lt;span class="t"&gt; w:rsidP&lt;/span&gt;&lt;span class="m"&gt;="&lt;/span&gt;&lt;b&gt;00266B4A&lt;/b&gt;&lt;span class="m"&gt;"&lt;/span&gt;&lt;span class="m"&gt; 
/&amp;gt; &amp;nbsp; &lt;font color="#ff0000"&gt;&amp;lt;-{page break}&lt;/font&gt;&lt;/span&gt; &lt;/div&gt;&lt;/div&gt;
&lt;div class="e"&gt;
&lt;div&gt;&lt;span class="b"&gt;&amp;nbsp;&lt;/span&gt; &lt;span class="m"&gt;&amp;lt;&lt;/span&gt;&lt;span class="t"&gt;w:p&lt;/span&gt; &lt;span class="t"&gt;w:rsidR&lt;/span&gt;&lt;span class="m"&gt;="&lt;/span&gt;&lt;b&gt;00266B4A&lt;/b&gt;&lt;span class="m"&gt;"&lt;/span&gt;&lt;span class="t"&gt; 
w:rsidRDefault&lt;/span&gt;&lt;span class="m"&gt;="&lt;/span&gt;&lt;b&gt;00266B4A&lt;/b&gt;&lt;span class="m"&gt;"&lt;/span&gt;&lt;span class="t"&gt; w:rsidP&lt;/span&gt;&lt;span class="m"&gt;="&lt;/span&gt;&lt;b&gt;00266B4A&lt;/b&gt;&lt;span class="m"&gt;"&lt;/span&gt;&lt;span class="m"&gt; 
/&amp;gt;&lt;/span&gt; &lt;/div&gt;&lt;/div&gt;
&lt;div class="e"&gt;
&lt;div&gt;&lt;span class="b"&gt;&amp;nbsp;&lt;/span&gt; &lt;span class="m"&gt;&amp;lt;&lt;/span&gt;&lt;span class="t"&gt;w:p&lt;/span&gt; &lt;span class="t"&gt;w:rsidR&lt;/span&gt;&lt;span class="m"&gt;="&lt;/span&gt;&lt;b&gt;00266B4A&lt;/b&gt;&lt;span class="m"&gt;"&lt;/span&gt;&lt;span class="t"&gt; 
w:rsidRDefault&lt;/span&gt;&lt;span class="m"&gt;="&lt;/span&gt;&lt;b&gt;00266B4A&lt;/b&gt;&lt;span class="m"&gt;"&lt;/span&gt;&lt;span class="t"&gt; w:rsidP&lt;/span&gt;&lt;span class="m"&gt;="&lt;/span&gt;&lt;b&gt;00266B4A&lt;/b&gt;&lt;span class="m"&gt;"&lt;/span&gt;&lt;span class="m"&gt; 
/&amp;gt;&lt;/span&gt; &lt;/div&gt;&lt;/div&gt;
&lt;div class="e"&gt;
&lt;div&gt;&lt;span class="b"&gt;&amp;nbsp;&lt;/span&gt; &lt;span class="m"&gt;&amp;lt;&lt;/span&gt;&lt;span class="t"&gt;w:p&lt;/span&gt; &lt;span class="t"&gt;w:rsidR&lt;/span&gt;&lt;span class="m"&gt;="&lt;/span&gt;&lt;b&gt;00266B4A&lt;/b&gt;&lt;span class="m"&gt;"&lt;/span&gt;&lt;span class="t"&gt; 
w:rsidRDefault&lt;/span&gt;&lt;span class="m"&gt;="&lt;/span&gt;&lt;b&gt;00266B4A&lt;/b&gt;&lt;span class="m"&gt;"&lt;/span&gt;&lt;span class="t"&gt; w:rsidP&lt;/span&gt;&lt;span class="m"&gt;="&lt;/span&gt;&lt;b&gt;00266B4A&lt;/b&gt;&lt;span class="m"&gt;"&lt;/span&gt;&lt;span class="m"&gt; 
/&amp;gt;&lt;/span&gt; &lt;/div&gt;&lt;/div&gt;
&lt;div class="e"&gt;
&lt;div class="c"&gt;&lt;a class="b"&gt;-&lt;/a&gt; &lt;span class="m"&gt;&amp;lt;&lt;/span&gt;&lt;span class="t"&gt;w:p&lt;/span&gt;&lt;span class="t"&gt; w:rsidR&lt;/span&gt;&lt;span class="m"&gt;="&lt;/span&gt;&lt;b&gt;00266B4A&lt;/b&gt;&lt;span class="m"&gt;"&lt;/span&gt;&lt;span class="t"&gt; 
w:rsidRDefault&lt;/span&gt;&lt;span class="m"&gt;="&lt;/span&gt;&lt;b&gt;00266B4A&lt;/b&gt;&lt;span class="m"&gt;"&lt;/span&gt;&lt;span class="t"&gt; w:rsidP&lt;/span&gt;&lt;span class="m"&gt;="&lt;/span&gt;&lt;b&gt;00266B4A&lt;/b&gt;&lt;span class="m"&gt;"&lt;/span&gt;&lt;span class="m"&gt;&amp;gt;&lt;/span&gt;&lt;/div&gt;
&lt;div&gt;
&lt;div class="e"&gt;
&lt;div class="c"&gt;&lt;a class="b"&gt;-&lt;/a&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;span class="m"&gt;&amp;lt;&lt;/span&gt;&lt;span class="t"&gt;w:r&lt;/span&gt;&lt;span class="m"&gt;&amp;gt;&lt;/span&gt;&lt;/div&gt;
&lt;div&gt;
&lt;div class="e"&gt;
&lt;div&gt;&lt;span class="b"&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp;&lt;/span&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;span class="m"&gt;&amp;lt;&lt;/span&gt;&lt;span class="t"&gt;w:t&lt;/span&gt;&lt;span class="ns"&gt; xml:space&lt;/span&gt;&lt;span class="m"&gt;="&lt;/span&gt;&lt;b class="ns"&gt;preserve&lt;/b&gt;&lt;span class="m"&gt;"&lt;/span&gt;&lt;span class="m"&gt;&amp;gt;&lt;/span&gt;&lt;span class="tx"&gt;All my fun TEXT.&lt;/span&gt;&lt;span class="m"&gt;&amp;lt;/&lt;/span&gt;&lt;span class="t"&gt;w:t&lt;/span&gt;&lt;span class="m"&gt;&amp;gt;&lt;/span&gt; &lt;/div&gt;&lt;/div&gt;
&lt;div&gt;&lt;span class="b"&gt;&amp;nbsp;&lt;/span&gt; &lt;span class="m"&gt;&amp;lt;/&lt;/span&gt;&lt;span class="t"&gt;w:r&lt;/span&gt;&lt;span class="m"&gt;&amp;gt;&lt;/span&gt;&lt;/div&gt;&lt;/div&gt;&lt;/div&gt;
&lt;div&gt;&lt;span class="b"&gt;&lt;/span&gt;&lt;span class="m"&gt;&amp;lt;/&lt;/span&gt;&lt;span class="t"&gt;w:p&lt;/span&gt;&lt;span class="m"&gt;&amp;gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Notice the distinct lack of any indication of a page break.&lt;br&gt;&lt;br&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Still looking for suggestions on this.&lt;br&gt;&lt;br&gt;Thanks!&lt;/span&gt;&lt;/div&gt;&lt;/div&gt;&lt;/div&gt;</description></item><item><title>Cutting WordML Documents into Individual Pages.</title><link>http://openxmldeveloper.org/forums/thread/4017.aspx</link><pubDate>Fri, 30 Jan 2009 23:16:52 GMT</pubDate><guid isPermaLink="false">1ff61f26-0981-41c7-ad52-ff725e9b1da8:4017</guid><dc:creator>Ralph Boester</dc:creator><slash:comments>0</slash:comments><comments>http://openxmldeveloper.org/forums/thread/4017.aspx</comments><wfw:commentRss>http://openxmldeveloper.org/forums/commentrss.aspx?SectionID=13&amp;PostID=4017</wfw:commentRss><description>&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Ok, as I understand it WordML documents don't really have "page breaks" as one would think.&amp;nbsp; Due to the changing size of fonts, pictures, and such the "page breaks" are kind of relative to where they were when the document was last paginated by Word.&lt;br&gt;&lt;br&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; That said,&amp;nbsp; I am looking to divide word documents by page.&amp;nbsp; I have been looking over the OpenXML SDK v2.0 (and loving the amount of detail in the CHM ...).&amp;nbsp;&amp;nbsp;&amp;nbsp; I have not been able to find any sort of object/collection/property that can help me divide my docx documents by page.&lt;br&gt;&lt;br&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; I am aware that if you look at the OpenXML for a WordML document you will see things like:&lt;br&gt;&amp;lt;w:lastRenderedPageBreak /&amp;gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; OR it would seem&amp;nbsp;&amp;nbsp; &amp;lt;w:br w:type="page" /&amp;gt;&lt;br&gt;&lt;br&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; With lastRenderedPageBreak being a relative break put in by Word on last pagination and&amp;nbsp; type="page" being a hard break inserted by a user.&lt;br&gt;&lt;br&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Now I am pretty sure I could spend a good deal of time and create some sort of XML parsing monster to hack and slash the heck out of the raw OpenXML and reassemble it into smaller chunks.&amp;nbsp;&amp;nbsp; But I do not relish the idea of doing this much leg work if something already exists that does this.&lt;br&gt;&lt;br&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Is there some simple(ish) way of doing this?&amp;nbsp; I have looked through the OpenXML SDK v2.0 (to no avail).&amp;nbsp; I then looked around at the System.IO.Packaging but was unable to find anything more helpful (with this particular task).&lt;br&gt;&lt;br&gt;&lt;br&gt;Any hints, tips, or tactics for this would be most helpful.&lt;br&gt;&lt;br&gt;Thanks!</description></item></channel></rss>