Item

FootnoteSeparatorCollection indexer

Recupera unFootnoteSeparator del tipo specificato.

public FootnoteSeparator this[FootnoteSeparatorType separatorType] { get; }

Osservazioni

Restituiscenull se il separatore di note a piè di pagina/note di chiusura del tipo specificato non viene trovato.

Esempi

Mostra come gestire il formato del separatore delle note a piè di pagina.

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

FootnoteSeparator footnoteSeparator = doc.FootnoteSeparators[FootnoteSeparatorType.FootnoteSeparator];
// Allinea il separatore delle note a piè di pagina.
footnoteSeparator.FirstParagraph.ParagraphFormat.Alignment = ParagraphAlignment.Center;

Guarda anche