Interface ICompositeNode

Interface ICompositeNode

Название пространства: Aspose.Note Ассоциация: Aspose.Note.dll (25.4.0)

Интерфейс для узлов, которые могут содержать другие узлы.

public interface ICompositeNode
   {
      ICompositeNode Parent { get; set; }
      IEnumerable<ICompositeNode> Children { get; }
   }

Methods

Название: GetChildNodes (NodeType)

Получите все детские узлы по типу узла.

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

Parameters

type NodeType

Тип нода .

Returns

List • < INode >

Список детских узлов.

GetChildNodes()

Получите все детские узлы по типу узла.

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

Returns

List

Список детских узлов.

Типы параметров

T1

Тип элементов в возвращенном списке.

 Русский