FootnoteSeparatorType enumeration

FootnoteSeparatorType enumeration

Specifies the type of the footnote/endnote separator.

Members

NameDescription
FootnoteSeparatorSeparator between main text and footnote text.
FootnoteContinuationSeparatorPrinted above footnote text on a page when the text must be continued from a previous page.
FootnoteContinuationNoticePrinted below footnote text on a page when footnote text must be continued on a succeeding page.
EndnoteSeparatorSeparator between main text and endnote text.
EndnoteContinuationSeparatorPrinted above endnote text on a page when the text must be continued from a previous page.
EndnoteContinuationNoticePrinted below endnote text on a page when endnote text must be continued on a succeeding page.

Examples

Shows how to remove endnote separator.

let doc = new aw.Document(base.myDir + "Footnotes and endnotes.docx");

let endnoteSeparator = doc.footnoteSeparators.at(aw.Notes.FootnoteSeparatorType.EndnoteSeparator);
// Remove endnote separator.
endnoteSeparator.firstParagraph.firstChild.remove();

Shows how to manage footnote separator format.

let doc = new aw.Document(base.myDir + "Footnotes and endnotes.docx");

let footnoteSeparator = doc.footnoteSeparators.at(aw.Notes.FootnoteSeparatorType.FootnoteSeparator);
// Align footnote separator.
footnoteSeparator.firstParagraph.paragraphFormat.alignment = aw.ParagraphAlignment.Center;

See Also