Search
FlowChart.AllowUnanchoredArrows Property
See Also
 



Gets or sets a value indicating whether arrows can be connected to nodes to which there aren't assigned any anchor points.

 Syntax

VB6  Copy Code

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

C++  Copy Code

public:
bool get_AllowUnanchoredArrows ()
void put_AllowUnanchoredArrows (
    bool value
)

 Property Value

A boolean value. The default is true.

 Remarks

AllowUnanchoredArrows applies to nodes whose AnchorPattern is not set or does not contain incoming or outgoing anchor points available. If the property is enabled, users can connect arrows to any point of such nodes. If disabled, users cannot link arrows to such nodes.

 See Also