CompositeNodeLastChild Property

Gets the last child of the node.

Namespace:  Aspose.Words
Assembly:  Aspose.Words (in Aspose.Words.dll) Version: 20.3
Syntax
public Node LastChild { get; }

Property Value

Type: Node
Remarks
If there is no last child node, a null is returned.
Examples
Shows how to use of methods of Node and CompositeNode to remove a section before the last section in the document.
// Document is a CompositeNode and LastChild returns the last child node in the Document node
// Since the Document can contain only Section nodes, the last child is the last section
Node lastSection = doc.LastChild;

// Each node knows its next and previous sibling nodes
// Previous sibling of a section is a section before the specified section
// If the node is the first child, PreviousSibling will return null
Node sectionBeforeLast = lastSection.PreviousSibling;

if (sectionBeforeLast != null)
    doc.RemoveChild(sectionBeforeLast);
See Also