ToArray

ParagraphCollection.ToArray method

Kopiert alle Absätze aus der Sammlung in ein neues Array von Absätzen.

public Paragraph[] ToArray()

Rückgabewert

Eine Reihe von Absätzen.

Beispiele

Zeigt, wie ein Array aus einer NodeCollection erstellt wird.

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

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

Assert.AreEqual(22, paras.Length);

Zeigt, wie Sie mit „Hot Remove“ einen Knoten während der Aufzählung entfernen.

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");

// Einen Knoten mitten in einer Aufzählung aus der Sammlung entfernen.
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"));

Siehe auch