FootnoteSeparatorCollection

FootnoteSeparatorCollection class

Proporciona acceso tipificado aFootnoteSeparator nodos de un documento.

public class FootnoteSeparatorCollection : IEnumerable<FootnoteSeparator>

Constructores

NombreDescripción
FootnoteSeparatorCollection()Constructor predeterminado

Propiedades

NombreDescripción
Item { get; }Recupera unaFootnoteSeparator del tipo especificado.

Métodos

NombreDescripción
GetEnumerator()

Ejemplos

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