Interface ITreeNode<T>
Contains Tree node properties and methods
Inherited Members
Namespace: PnP.Framework.Diagnostics.Tree
Assembly: PnP.Framework.dll
Syntax
public interface ITreeNode<T> : ITreeNode
Type Parameters
T
Generic type |
Properties
Children
Parent
Root
Value
Generic type value
Declaration
T Value { get; set; }
Property Value
T
|
Methods
SetParent(ITreeNode<T>, Boolean)
Sets parent node to the child nodes
Declaration
void SetParent(ITreeNode<T> Node, bool UpdateChildNodes = true)
Parameters
ITreeNode<T>
Node
Node to which we need to set parent node |
System.Boolean
UpdateChildNodes
Updates child nodes |