ToArray

ParagraphCollection.ToArray method

Copia tutti i paragrafi dalla raccolta in un nuovo array di paragrafi.

public Paragraph[] ToArray()

Valore di ritorno

Una serie di paragrafi.

Esempi

Mostra come creare una matrice da una NodeCollection.

Document doc = new Document(MyDir + "Paragraphs.docx");

Paragraph[] paras = doc.FirstSection.Body.Paragraphs.ToArray();

Assert.AreEqual(22, paras.Length);

Mostra come utilizzare la “rimozione a caldo” per rimuovere un nodo durante l’enumerazione.

Document doc = new Document();
DocumentBuilder builder = new DocumentBuilder(doc);

builder.Writeln("The first paragraph");
builder.Writeln("The second paragraph");
builder.Writeln("The third paragraph");
builder.Writeln("The fourth paragraph");

// Rimuove un nodo dalla raccolta nel mezzo di un'enumerazione.
foreach (Paragraph para in doc.FirstSection.Body.Paragraphs.ToArray())
    if (para.Range.Text.Contains("third"))
        para.Remove();

Assert.False(doc.GetText().Contains("The third paragraph"));

Guarda anche