Interface ICompositeNode

Interface ICompositeNode

Namespace: Aspose.Note
Assembly: Aspose.Note.dll (24.12.0)

The interface for nodes that can contain other nodes.

public interface ICompositeNode

Methods

GetChildNodes(NodeType)

Get all child nodes by node type.

[Obsolete("Use GetChildNodes<t>() method instead.")]
List<inode> GetChildNodes(NodeType type)

Parameters

type NodeType

The node type.

Returns

List<INode&gt;

A list of child nodes.

GetChildNodes<t1>()

Get all child nodes by the node type.

List<t1> GetChildNodes<t1>() where T1 : class, INode

Returns

List<t1>

A list of child nodes.

Type Parameters

T1

The type of elements in the returned list. </t1></t1>