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 ICompositeNodeMethods
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
A list of child nodes.
GetChildNodes<T1>()
Get all child nodes by the node type.
List<T1> GetChildNodes<T1>() where T1 : class, INodeReturns
List <T1>
A list of child nodes.
Type Parameters
T1
The type of elements in the returned list.