Search
FlowChart.ArrowCrossings Property
See Also
 



Gets or sets how to render the intersection points where arrows cross their paths.

 Syntax

VB6  Copy Code

Public Property Get ArrowCrossings() As EArrowCrossings
Public Property Let ArrowCrossings( _
    ByVal Value As EArrowCrossings _
)

C++  Copy Code

public:
EArrowCrossings get_ArrowCrossings ()
void put_ArrowCrossings (
    EArrowCrossings value
)

 Property Value

A member of the EArrowCrossings enumeration. The default is acStraight.

 Remarks

Intersection points where arrows cross their paths can be rendered as arcs or breaks, depending on the value of this property. The z-order defines which arrows jump over the others or which arrows are cut by the others.  If ArrowCrossings is set to acArcs, arrows with higher ZIndex jump over those with lower ZIndex. If set to acBreaking, segments of arrows at lower Z are cut by arrows at higher Z. Radius of arcs and breaks can be set via the CrossRadius property.

 See Also