FootnoteSeparatorCollection
Proporciona acceso tipificado aFootnoteSeparator nodos de un documento.
public class FootnoteSeparatorCollection : IEnumerable<FootnoteSeparator>
Constructores
Propiedades
Métodos
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