Draws the connections between a given parent node and all of its immediate child nodes.

Namespace: TreeLayoutHelper.HierarchyLayout
Assembly: TreeLayoutHelper (in TreeLayoutHelper.dll) Version: 1.1.0.0 (1.1.0.0)

Syntax

C#
void DrawHierarchyConnections(
	HierarchyLayoutModel<TNode> model,
	NodeWithBounds<TNode> parent,
	NodeWithBounds<TNode>[] children
)
Visual Basic
Sub DrawHierarchyConnections ( _
	model As HierarchyLayoutModel(Of TNode), _
	parent As NodeWithBounds(Of TNode), _
	children As NodeWithBounds(Of TNode)() _
)
Visual C++
void DrawHierarchyConnections(
	HierarchyLayoutModel<TNode>^ model, 
	NodeWithBounds<TNode> parent, 
	array<NodeWithBounds<TNode>>^ children
)
J#
void DrawHierarchyConnections(
	HierarchyLayoutModel<TNode> model,
	NodeWithBounds<TNode> parent,
	NodeWithBounds<TNode>[] children
)
JScript
function DrawHierarchyConnections(
	model : HierarchyLayoutModel<TNode>, 
	parent : NodeWithBounds<TNode>, 
	children : NodeWithBounds<TNode>[]
)
JavaScript
function DrawHierarchyConnections(model, parent, children);

Parameters

model
Type: TreeLayoutHelper.HierarchyLayout..::..HierarchyLayoutModel<(Of <(<'TNode>)>)>
The tree model.
parent
Type: TreeLayoutHelper..::..NodeWithBounds<(Of <(<'TNode>)>)>
The parent node.
children
Type: array<TreeLayoutHelper..::..NodeWithBounds<(Of <(<'TNode>)>)>>[]()[][]
The child nodes.

Exceptions

ExceptionCondition
System..::..ArgumentNullExceptionAny of the arguments is nullNothingnullptra null reference (Nothing in Visual Basic).

See Also