LastChild

CompositeNode.LastChild property

获取节点的最后一个子节点。

public Node LastChild { get; }

评论

如果没有最后一个子节点,则无效的返回。

例子

演示如何使用 Node 和 CompositeNode 的方法删除文档中最后一部分之前的部分。

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

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

// 两个部分互为兄弟部分。
Section lastSection = (Section)doc.LastChild;
Section firstSection = (Section)lastSection.PreviousSibling;

// 根据与另一个部分的兄弟关系删除一个部分。
if (lastSection.PreviousSibling != null)
    doc.RemoveChild(firstSection);

// 我们删除的部分是第一个部分,文档中只剩下第二个部分。
Assert.AreEqual("Section 2 text.", doc.GetText().Trim());

也可以看看