FootnoteSeparators

DocumentBase.FootnoteSeparators property

Proporciona acceso a los separadores de notas al pie/notas finales definidos en el documento.

public FootnoteSeparatorCollection FootnoteSeparators { get; }

Ejemplos

Muestra cómo eliminar el separador de notas finales.

Document doc = new Document(MyDir + "Footnotes and endnotes.docx");

FootnoteSeparator endnoteSeparator = doc.FootnoteSeparators[FootnoteSeparatorType.EndnoteSeparator];
// Eliminar el separador de notas finales.
endnoteSeparator.FirstParagraph.FirstChild.Remove();

Muestra cómo administrar el formato del separador de notas al pie.

Document doc = new Document(MyDir + "Footnotes and endnotes.docx");

FootnoteSeparator footnoteSeparator = doc.FootnoteSeparators[FootnoteSeparatorType.FootnoteSeparator];
// Alinear el separador de notas al pie.
footnoteSeparator.FirstParagraph.ParagraphFormat.Alignment = ParagraphAlignment.Center;

Ver también