IndexOf

CompositeNode.IndexOf method

返回子节点数组中指定子节点的索引。

public int IndexOf(Node child)

评论

如果在子节点中未找到该节点,则返回 -1。

例子

演示如何从父节点获取给定子节点的索引。

Document doc = new Document(MyDir + "Rendering.docx");

Body body = doc.FirstSection.Body;

// 检索第一节正文中最后一段的索引。
Assert.AreEqual(24, body.GetChildNodes(NodeType.Any, false).IndexOf(body.LastParagraph));

也可以看看