Search
GridLayout.ArrowAnchoring Property
See Also
 



Gets or sets a value indicating how arrows should be aligned to the anchor points of nodes.

 Syntax

VB6  Copy Code

Public Property Get ArrowAnchoring() As EAnchoring
Public Property Let ArrowAnchoring( _
    ByVal Value As EAnchoring _
)

C++  Copy Code

public:
EAnchoring get_ArrowAnchoring ()
void put_ArrowAnchoring (
    EAnchoring value
)

 Property Value

A member of the EAnchoring enumeration. The default is ancIgnore.

 Remarks

The grid layout algorithm produces best results if it can place arrow ends at arbitrary positions over nodes' outlines, i.e. when this property is set to ancIgnore. If your application logic requires arrows to be always attached to anchor points, use the other two values. In such cases ancReassign would yield better results.

 See Also