The values in this enumeration represent the elements found in a flow graph.

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

Syntax

C#
public enum ElementType
Visual Basic
Public Enumeration ElementType
Visual C++
public enum class ElementType
J#
public enum ElementType
JScript
public enum ElementType
JavaScript
TreeLayoutHelper.FlowLayout.ElementType = function();
TreeLayoutHelper.FlowLayout.ElementType.createEnum('TreeLayoutHelper.FlowLayout.ElementType', false);

Members

Member nameValueDescription
Node0 The tree node becomes a node in the graph. Any child nodes of the tree node will be ignored.
Parallel1 The tree node is transformed into an area with several parallel flow paths. Each child of the tree node forms the content of one such path.
Sequence2 The tree node is transformed into a sequential chain of its child nodes.

Remarks

The values in this enumeration are used to determine how to transform a tree node when displaying the tree as a flow graph.

See Also