Interface ICompositeNode

Interface ICompositeNode

Il nome: Aspose.Note Assemblea: Aspose.Note.dll (25.4.0)

Interfaccia per i nodi che possono contenere altri nodi.

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

Methods

Gestione dei Nodi (NodeType)

Ottieni tutti i nodi del bambino per tipo di nodi.

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

Parameters

type NodeType

Il tipo di nodo.

Returns

List di < INode >

Un elenco dei nodi infantili.

GetChildNodes()

Ottieni tutti i nodi del bambino secondo il tipo di nodi.

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

Returns

List

Un elenco dei nodi infantili.

Tipo di parametri

T1

Il tipo di elementi nella lista restituita.

 Italiano