Search
Box.OutgAnchor Property
See Also
 



Gets or sets at which anchor points outgoing arrows are allowed to connect.

 Syntax

VB6  Copy Code

Public Property Get OutgAnchor() As EArrowAnchor
Public Property Let OutgAnchor( _
    ByVal Value As EArrowAnchor _
)

C++  Copy Code

public:
EArrowAnchor get_OutgAnchor ()
void put_OutgAnchor (
    EArrowAnchor value
)

 Property Value

A member of the EArrowAnchor enumeration.

 Remarks

Sets an anchor point to which outgoing arrows will be connected. The possible values of this property are aaNoAnchor, aaHorzCenter, aaVertCenter, aaLeftCenter, aaRightCenter, aaTopCenter, aaBottomCenter. When arrows are created they are fastened to box anchor points but later the user can move them to different position inside the box, unless the ArrowEndsMovable property is set to false. You can also control if arrow ends position can be changed through the RequestAttachArrow event.

 See Also