RemoveChild

CompositeNode.RemoveChild method

删除指定的子节点。

public Node RemoveChild(Node oldChild)
范围类型描述
oldChildNode要删除的节点。

返回值

删除的节点。

评论

的父母oldChild被设定为无效的节点被删除后。

例子

演示如何使用 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());

也可以看看