IndexOf

CompositeNode.IndexOf method

Returns the index of the specified child node in the child node array.

public int IndexOf(Node child)

Remarks

Returns -1 if the node is not found in the child nodes.

Examples

Shows how to get the index of a given child node from its parent.

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

Body body = doc.FirstSection.Body;

// Retrieve the index of the last paragraph in the body of the first section.
Assert.AreEqual(24, body.GetChildNodes(NodeType.Any, false).IndexOf(body.LastParagraph));

See Also