CompositeNodeLastChild Property |
Namespace: Aspose.Words
// 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);