Interface ICompositeNode

Interface ICompositeNode

Namespace: Aspose.Note
Assembly: Aspose.Note.dll (25.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 >

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.

 English