Search
FlowChart.AllowRefLinks Property
See Also
 



Gets or sets a value indicating whether reflexive links are enabled.

 Syntax

VB6  Copy Code

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

C++  Copy Code

public:
bool get_AllowRefLinks ()
void put_AllowRefLinks (
    bool value
)

 Property Value

A boolean value. The default is true.

 Remarks

When set to true, users are allowed to create reflexive links, i.e. arrows whose origin and target are the same node. When such link is created, the control raises the SetSelfLoopShape event to let you assign a custom shape to the link, different than the default loop shape.

 See Also