Table of Contents

Interface INode

Namespace
iText.StyledXmlParser.Node
Assembly
itext.styledxmlparser.dll

Interface for classes that describe a Node with a parent and children.

public interface INode

Methods

AddChild(INode)

Adds a child node.

void AddChild(INode node)

Parameters

node INode

a child node that will be added to the current node

ChildNodes()

Gets the child nodes.

IList<INode> ChildNodes()

Returns

IList<INode>

a list of INode instances.

ParentNode()

Gets the parent node.

INode ParentNode()

Returns

INode

the parent node