On Mon, 23 Jun 2008, Aneesh wrote: > I want to determine the page breaks that occurs in a 2007 word > documents. These page breaks are not manually inserted. These are the > breaks that word inserts on it's own as it renders a document. Once I > save such a document, I want to inspect the generated .docx file.
Generally your best bet with ooxml files is just to unzip them, and go poking around in the xml. Since you know where the page breaks occur in your text (from looking in word), you just need to look for that in the xml, and see what changes there. After that, you should be able to figure out the matching XmlBeans for that, and then you can work with it in poi Nick --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]
