Determines whether junction nodes should explicitely be displayed for parallel subgraphs.
Namespace: TreeLayoutHelper.FlowLayoutAssembly: TreeLayoutHelper (in TreeLayoutHelper.dll) Version: 1.1.0.0 (1.1.0.0)
Syntax
C# |
---|
void AddJunctionNodes(
TNode parallelNode,
ref bool junctionBefore,
ref bool junctionAfter
) |
Visual Basic |
---|
Sub AddJunctionNodes ( _
parallelNode As TNode, _
ByRef junctionBefore As Boolean, _
ByRef junctionAfter As Boolean _
) |
Visual C++ |
---|
void AddJunctionNodes(
TNode parallelNode,
bool% junctionBefore,
bool% junctionAfter
) |
J# |
---|
void AddJunctionNodes(
TNode parallelNode,
/** @ref */boolean junctionBefore,
/** @ref */boolean junctionAfter
) |
JScript |
---|
function AddJunctionNodes(
parallelNode : TNode,
junctionBefore : boolean,
junctionAfter : boolean
) |
JavaScript |
---|
function AddJunctionNodes(parallelNode, junctionBefore, junctionAfter); |
Parameters
- parallelNode
- Type: TNode
The node whose children are displayed as parallel subgraphs.
- junctionBefore
- Type: System..::..Boolean%
Indicates whether parallelNode should be explicitely displayed before the junction.
- junctionAfter
- Type: System..::..Boolean%
Indicates whether parallelNode should be explicitely displayed after the junction.
Remarks
Exceptions
See Also