FootnoteSeparatorCollection class

FootnoteSeparatorCollection class

Provides typed access to FootnoteSeparator nodes of a document.

Constructors

NameDescription
FootnoteSeparatorCollection()The default constructor.

Properties

NameDescription
this[]

Examples

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