Search
DrawLinkEventArgs Constructor
See Also
 





Initializes a new instance of the DrawLinkEventArgs class.

Namespace: MindFusion.Diagramming
Package: MindFusion.Diagramming

 Syntax

C#  Copy Code

public DrawLinkEventArgs (
    IGraphics graphics,
    DiagramLink link,
    bool shadow,
    PointCollection points
)

Visual Basic  Copy Code

Public New ( _
    graphics As IGraphics, _
    link As DiagramLink, _
    shadow As Boolean, _
    points As PointCollection _
)

 Parameters

graphics

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

link

The DiagramLink related to the event.

shadow

Specifies whether to draw the link's shadow or the link itself.

points

The collection containing the coordinates of the link control points, pretranslated depending on whether drawing the shadow or not.

 See Also