This interface may be implemented by a tree in order to allow a
TreeDrawing to be constructed from the tree.
Namespace:
KansasStateUniversity.TreeViewer2
Assembly:
KansasStateUniversity.TreeViewer2 (in KansasStateUniversity.TreeViewer2.dll) Version: 2.0.0.0 (2.0.0.0)
Syntaxpublic interface class ITree
type ITree = interface end
The ITree type exposes the following members.
Properties
| Name | Description |
---|
 | Children |
Gets the children of the tree.
|
 | IsEmpty |
Gets a boolean indicating whether the tree is empty.
|
 | Root |
Gets the root of the tree.
|
Top
Remarks
Empty trees may be
represented either by null references or by objects whose
IsEmpty properties are true. If null references
are used, IsEmpty should always be false.
See Also