Interface ITreeNode
Generalizes a property that a class implements that provides an associated Item object that can be held against the class while also having child items through the IHasChildren interface implementation.
Inherited Members
Namespace: LemonEdge.Utils
Assembly: Utils.dll
Syntax
public interface ITreeNode : IHasChildren
Properties
Item
The associated item held against the class implementing this ITreeNode implementation
Declaration
object Item { get; }
Property Value
Type | Description |
---|---|
System.Object | The item associated with this treenode |