public class FootnoteSeparatorType
extends java.lang.Object
Examples:
Shows how to remove endnote separator.
Document doc = new Document(getMyDir() + "Footnotes and endnotes.docx");
FootnoteSeparator endnoteSeparator = doc.getFootnoteSeparators().getByFootnoteSeparatorType(FootnoteSeparatorType.ENDNOTE_SEPARATOR);
// Remove endnote separator.
endnoteSeparator.getFirstParagraph().getFirstChild().remove();
Shows how to manage footnote separator format.
Document doc = new Document(getMyDir() + "Footnotes and endnotes.docx");
FootnoteSeparator footnoteSeparator = doc.getFootnoteSeparators().getByFootnoteSeparatorType(FootnoteSeparatorType.FOOTNOTE_SEPARATOR);
// Align footnote separator.
footnoteSeparator.getFirstParagraph().getParagraphFormat().setAlignment(ParagraphAlignment.CENTER);
| Modifier and Type | Field and Description |
|---|---|
static int |
ENDNOTE_CONTINUATION_NOTICE
Printed below endnote text on a page when endnote text must be continued on a succeeding page.
|
static int |
ENDNOTE_CONTINUATION_SEPARATOR
Printed above endnote text on a page when the text must be continued from a previous page.
|
static int |
ENDNOTE_SEPARATOR
Separator between main text and endnote text.
|
static int |
FOOTNOTE_CONTINUATION_NOTICE
Printed below footnote text on a page when footnote text must be continued on a succeeding page.
|
static int |
FOOTNOTE_CONTINUATION_SEPARATOR
Printed above footnote text on a page when the text must be continued from a previous page.
|
static int |
FOOTNOTE_SEPARATOR
Separator between main text and footnote text.
|
static int |
length |
| Modifier and Type | Method and Description |
|---|---|
static int |
fromName(java.lang.String footnoteSeparatorTypeName) |
static java.lang.String |
getName(int footnoteSeparatorType) |
static int[] |
getValues() |
static java.lang.String |
toString(int footnoteSeparatorType) |
public static int FOOTNOTE_SEPARATOR
public static int FOOTNOTE_CONTINUATION_SEPARATOR
public static int FOOTNOTE_CONTINUATION_NOTICE
public static int ENDNOTE_SEPARATOR
public static int ENDNOTE_CONTINUATION_SEPARATOR
public static int ENDNOTE_CONTINUATION_NOTICE
public static int length