This structure stores a tree node along with its rectangular bounds in a graphical representation.
Namespace: TreeLayoutHelperAssembly: TreeLayoutHelper (in TreeLayoutHelper.dll) Version: 1.1.0.0 (1.1.0.0)
Syntax
C# |
---|
public struct NodeWithBounds<TNode> : IEquatable<NodeWithBounds<TNode>>
|
Visual Basic |
---|
Public Structure NodeWithBounds(Of TNode) _
Implements IEquatable(Of NodeWithBounds(Of TNode)) |
Visual C++ |
---|
generic<typename TNode>
public value class NodeWithBounds : IEquatable<NodeWithBounds<TNode>> |
J# |
---|
J# supports the use of generic APIs, but not the declaration of new ones. |
JScript |
---|
JScript does not support generic types or methods. |
JavaScript |
---|
JavaScript does not support generic types or methods. |
Type Parameters
- TNode
- The base type of tree nodes.
See Also