LastChild

CompositeNode.LastChild property

Ottiene l’ultimo figlio del nodo.

public Node LastChild { get; }

Osservazioni

Se non è presente l’ultimo nodo figlio, anullo viene restituito.

Esempi

Mostra come utilizzare i metodi Node e CompositeNode per rimuovere una sezione prima dell’ultima sezione nel documento.

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

builder.Writeln("Section 1 text.");
builder.InsertBreak(BreakType.SectionBreakContinuous);
builder.Writeln("Section 2 text.");

// Entrambe le sezioni sono sorelle l'una dell'altra.
Section lastSection = (Section)doc.LastChild;
Section firstSection = (Section)lastSection.PreviousSibling;

// Rimuove una sezione in base alla sua relazione di pari livello con un'altra sezione.
if (lastSection.PreviousSibling != null)
    doc.RemoveChild(firstSection);

// La sezione che abbiamo rimosso era la prima, lasciando nel documento solo la seconda.
Assert.AreEqual("Section 2 text.", doc.GetText().Trim());

Guarda anche