Interface IInTree<TItem>
A component which adds the ability for an entity to be a part of an entity's tree.
Inherited Members
System.IDisposable.Dispose()
System.ComponentModel.INotifyPropertyChanged.PropertyChanged
Namespace: AGS.API
Assembly: AGS.API.dll
Syntax
public interface IInTree<TItem> : IComponent, IDisposable, INotifyPropertyChanged where TItem : class, IInTree<TItem>
Type Parameters
Name | Description |
---|---|
TItem |
Properties
| Improve this Doc View SourceTreeNode
Gets the tree node, which allows to compose various entity together in a tree-like hierarchy.
Declaration
ITreeNode<TItem> TreeNode { get; }
Property Value
Type | Description |
---|---|
ITreeNode<TItem> | The tree node. |