public class ContinuousSectionRestart
extends java.lang.Object
Examples:
Shows how to control page numbering in a continuous section.
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");
| Modifier and Type | Field and Description |
|---|---|
static int |
ALWAYS
Page numbering always restarts regardless of content flow.
|
static 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.
|
static int |
length |
| Modifier and Type | Method and Description |
|---|---|
static int |
fromName(java.lang.String continuousSectionRestartName) |
static java.lang.String |
getName(int continuousSectionRestart) |
static int[] |
getValues() |
static java.lang.String |
toString(int continuousSectionRestart) |
public static int ALWAYS
Remarks:
This behavior is demonstrated by all MS Word versions, except Word 2016.
public static int FROM_NEW_PAGE_ONLY
Remarks:
The behavior is demonstrated by MS Word 2016.
public static int length