Search
AnchorPoint Constructor (Single, Single, Boolean, Boolean, Color, Int32)
See Also
 





Initializes a new instance of the AnchorPoint class with the specified coordinates, restrictions and color.

Namespace: MindFusion.Diagramming
Package: MindFusion.Diagramming

 Syntax

C#  Copy Code

public AnchorPoint (
    float x,
    float y,
    bool allowIncoming,
    bool allowOutgoing,
    Color color,
    int col
)

Visual Basic  Copy Code

Public New ( _
    x As Single, _
    y As Single, _
    allowIncoming As Boolean, _
    allowOutgoing As Boolean, _
    color As Color, _
    col As Integer _
)

 Parameters

x
The horizontal position of the anchor expressed as percent of the width of a node.
y
The vertical position of the anchor expressed as percent of the height of a node.
allowIncoming
Specifies whether incoming links can connect to this anchor.
allowOutgoing
Specifies whether outgoing links can connect to this anchor.
color
The color with which the anchor mark is painted.
col
Specifies a table's column, with which an anchor point is associated.

 See Also