Search
Box.AnchorPattern Property
See Also
 



Gets or sets the AnchorPattern object defining the points at which arrows can connect to this box.

 Syntax

VB6  Copy Code

Public Property Get AnchorPattern() As AnchorPattern
Public Property Let AnchorPattern( _
    ByVal Value As AnchorPattern _
)

C++  Copy Code

public:
AnchorPattern* get_AnchorPattern ()
void put_AnchorPattern (
    AnchorPattern* value
)

 Property Value

A reference to an AnchorPattern object.

 Remarks

An anchor pattern defines a set of anchor points at which arrows connect to a box. Assigning to this property automatically sets IncmAnchor and OutgAnchor to aaPattern. If a box has not any anchor points defined, arrows can be linked to any point of that box. The indices of the anchor points to which an arrow is attached can be accessed via the OrgnAnchor and DestAnchor properties of the Arrow class.

 See Also