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
Список дитячих вузлів.
GetChildNodes()
Знайдіть всі дитячі вузли за типом нігтів.
List<T1> GetChildNodes<T1>() where T1 : class, INode
{
}
Returns
Список дитячих вузлів.
Тип параметрів
T1
Тип елементів в поверненому списку.