Search
FlowChart.ArrowsSplittable Property
See Also
 



Gets or sets a value indicating whether arrow segments can be added interactively.

 Syntax

VB6  Copy Code

Public Property Get ArrowsSplittable() As Boolean
Public Property Let ArrowsSplittable( _
    ByVal value As Boolean _
)

C++  Copy Code

public:
bool get_ArrowsSplittable ()
void put_ArrowsSplittable (
    bool value
)

 Property Value

A boolean value. The default is false.

 Remarks

Lets users insert new arrow segments interactively by clicking and dragging a point of an arrow's segment. For polyline-style arrow this creates one additional segment by splitting the existing one into two parts. For cascading arrows there are two segments inserted, keeping intact the alternating pattern of horizontal and vertical segments, each orthogonal to its neighbors. Bezier-style arrows cannot be split in the current FlowChartX version.

Segments can be merged by moving their joining point until the angle between reaches certain threshold value. In case of cascading-style arrows, segments can be merged by placing adjacent control points close one to the other, as set in MergeThreshold.

This property also affects how users can change the orientation of cascading arrows. For more details see PrpStartOrientation.

 Note

An arrow has to be selected before its segments can be split or merged if ModificationStart is set to mdSelectedOnly.

 See Also