Interface ICompositeNode
Interface ICompositeNode
Název místa: Aspose.Note Shromáždění: Aspose.Note.dll (25.4.0)
Rozhraní pro uzly, které mohou obsahovat jiná uzla.
public interface ICompositeNode
{
ICompositeNode Parent { get; set; }
IEnumerable<ICompositeNode> Children { get; }
}
Methods
Připojte se (NodeType)
Získejte všechny dětské uzliny podle typu uzlů.
[Obsolete("Use GetChildNodes<t>() method instead.")]
List<inode> GetChildNodes(NodeType type)
{
}
Parameters
type
NodeType
Tyto typy node.
Returns
Seznam dětských uzlin.
GetChildNodes()
Získejte všechny dětské uzliny podle typu uzlů.
List<T1> GetChildNodes<T1>() where T1 : class, INode
{
}
Returns
Seznam dětských uzlin.
Typy parametrů
T1
Typ prvků v vráceném seznamu.