Search
FlowChart.AllowLinksRepeat Property
See Also
 



Gets or sets a value indicating whether the same origin and destination diagram nodes can be linked with more than one arrow.

 Syntax

VB6  Copy Code

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

C++  Copy Code

public:
bool get_AllowLinksRepeat ()
void put_AllowLinksRepeat (
    bool value
)

 Property Value

A boolean value. The default is true.

 Remarks

Specifies if more than one arrow can link the same origin and destination diagram nodes. If set to false, two diagram nodes can be linked with at most one arrow in a single direction. This restriction applies only to interactive creations or modification of links. Programmatically, it is always possible to create more than one link between the same nodes.

 See Also