Search
Table.AnchorPattern Property
See Also
 



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

 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 with a node. If a table has not any anchor points defined, arrows can be linked to any point of that table. This property can be used with tables whose LinkStyle is set to tlsTable or tlsBoth. Use the RowAnchorPattern property to assign anchor patterns to distinct rows of the table. 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