Search
DrawAnchorPointEventArgs Constructor
See Also
 





Initializes a new instance of the DrawAnchorPointEventArgs class.

Namespace: MindFusion.Diagramming
Assembly: MindFusion.Diagramming

 Syntax

C#  Copy Code

public DrawAnchorPointEventArgs (
    IGraphics graphics,
    Point location,
    DiagramNode node,
    AnchorPattern anchorPattern,
    int anchorIndex
)

Visual Basic  Copy Code

Public New ( _
    graphics As IGraphics, _
    location As Point, _
    node As DiagramNode, _
    anchorPattern As AnchorPattern, _
    anchorIndex As Integer _
)

 Parameters

graphics

The IGraphics object that represents the target of the drawing operation.

location

The position of the anchor point, expressed in document coordinates.

node

The DiagramNode related to the event.

anchorPattern

The AnchorPattern object whose point is being drawn.

anchorIndex

The zero-based index of the anchor point being drawn within its anchor pattern.

 See Also