public class ChapterPageSeparator
extends java.lang.Object
Examples:
Shows how to work with page chapters.
Document doc = new Document(getMyDir() + "Big document.docx");
PageSetup pageSetup = doc.getFirstSection().getPageSetup();
pageSetup.setPageNumberStyle(NumberStyle.UPPERCASE_ROMAN);
pageSetup.setChapterPageSeparator(com.aspose.words.ChapterPageSeparator.COLON);
pageSetup.setHeadingLevelForChapter(1);
| Modifier and Type | Field and Description |
|---|---|
static int |
COLON
A colon.
|
static int |
EM_DASH
An emphasized dash.
|
static int |
EN_DASH
A standard dash.
|
static int |
HYPHEN
A colon.
|
static int |
length |
static int |
PERIOD
A period.
|
| Modifier and Type | Method and Description |
|---|---|
static int |
fromName(java.lang.String chapterPageSeparatorName) |
static java.lang.String |
getName(int chapterPageSeparator) |
static int[] |
getValues() |
static java.lang.String |
toString(int chapterPageSeparator) |