FootnoteSeparatorCollection
Provides typed access to FootnoteSeparator
nodes of a document.
public class FootnoteSeparatorCollection : IEnumerable<FootnoteSeparator>
Constructors
Properties
Methods
Examples
Shows how to manage footnote separator format.
Document doc = new Document(MyDir + "Footnotes and endnotes.docx");
FootnoteSeparator footnoteSeparator = doc.FootnoteSeparators[FootnoteSeparatorType.FootnoteSeparator];
// Align footnote separator.
footnoteSeparator.FirstParagraph.ParagraphFormat.Alignment = ParagraphAlignment.Center;
See Also