Hi,
Is it possible to split a docx per page ?
I tried it with the sections and DOCXPathUtilities but impossible to get there
I'm using Premium 11
Hi,
Is it possible to split a docx per page ?
I tried it with the sections and DOCXPathUtilities but impossible to get there
I'm using Premium 11
Hello,
splitDocx available in DOCXPathUtilitles allows to split a DOCX per section, but not by page. There's no method in the current stable version to split a DOCX by page.
Regards.
Is there a way to create one section per existing page? addSection seems hazardous
I want to split a existing 3 pages docx
Regards
Hello,
Internally, DOCX documents work with sections, not pages. A section may fill one or more pages or even less than a page (several sections may fill one page). How many pages have a section is unknown until the DOCX is opened using a DOCX reader (in some cases, distinct DOCX readers may show more or less pages for the same DOCX depending on the contents).
Unfortunately, a DOCX doesn't include a specific tag or content to set a page, only sections. You can do page breaks (addBreak method) and section breaks (addSection method) if needed to separate contents; the previous methods add OOXML tags that can be queried, added, changed, removed...
Regards.