Search
FlowChart.ShowAnchors Property
See Also
 



Gets or sets a value indicating when anchor points should be displayed.

 Syntax

VB6  Copy Code

Public Property Get ShowAnchors() As EShowAnchors
Public Property Let ShowAnchors( _
    ByVal Value As EShowAnchors _
)

C++  Copy Code

public:
EShowAnchors get_ShowAnchors ()
void put_ShowAnchors (
    EShowAnchors value
)

 Property Value

A member of the EShowAnchors enumeration The default is saAuto.

 Remarks

Sets or gets whether to display anchor points on screen. The following values can be set, either stand-alone or combined via bitwise "or" operation:

saAlways

Anchor points are always visible.

saNever

Anchor points are never visible.

saAuto

Anchor points of the currently pointed node are automatically displayed.

saSelected

Anchor points of the active item are always visible.

 See Also