Item

FootnoteSeparatorCollection indexer

Recupera unaFootnoteSeparator del tipo especificado.

public FootnoteSeparator this[FootnoteSeparatorType separatorType] { get; }

Observaciones

Devuelvenulo Si no se encuentra el separador de notas al pie/nota final del tipo especificado.

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