Search
Arrow.SnapToNodeBorder Property
See Also
 



Gets or sets a value indicating whether the arrow end points should automatically align to node borders while a user moves them.

 Syntax

VB6  Copy Code

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

C++  Copy Code

public:
bool get_SnapToNodeBorder ()
void put_SnapToNodeBorder (
    bool value
)

 Property Value

A boolean value. Initialized with FlowChart.ArrowsSnapToNodeBorders.

 Remarks

If this property is enabled and a user drags an end control point of an arrow, the control point snaps to the border lines of target nodes. That prevents the user from placing arrow's end point inside the interior of a node.

Another way to control where arrow end points can be placed is provided by the AnchorPattern property of boxes.

 See Also