public class ContinuousSectionRestart
Example:
Document doc = new Document(getMyDir() + "Continuous section page numbering.docx");
// By default Aspose.Words behavior matches the Microsoft Word 2019.
// If you need old Aspose.Words behavior, repetitive Microsoft Word 2016, use 'ContinuousSectionRestart.FromNewPageOnly'.
// Page numbering restarts only if there is no other content before the section on the page where the section starts,
// because of that the numbering will reset to 2 from the second page.
doc.getLayoutOptions().setContinuousSectionPageNumberingRestart(ContinuousSectionRestart.FROM_NEW_PAGE_ONLY);
doc.updatePageLayout();
doc.save(getArtifactsDir() + "Layout.RestartPageNumberingInContinuousSection.pdf");
Field Summary | ||
---|---|---|
static final int | ALWAYS | |
Page numbering always restarts regardless of content flow.
|
||
static final int | FROM_NEW_PAGE_ONLY | |
Page numbering restarts only if there is no other content before the section on the page where the section starts.
|
public static final int ALWAYS
public static final int FROM_NEW_PAGE_ONLY