Raised when a diagram link must be custom drawn.
Namespace: MindFusion.Diagramming
Assembly: MindFusion.Diagramming
SyntaxC#
Copy Code
|
|---|
public event EventHandler<DrawLinkEventArgs> DrawLink |
Visual Basic
Copy Code
|
|---|
Public Event DrawLink As EventHandler(Of DrawLinkEventArgs) |
Event DataDrawLink event handlers receive an argument of type DrawLinkEventArgs. The following DrawLinkEventArgs members provide information relevant to the event:
Member name | Description |
|---|---|
The DiagramLink that should be custom drawn. | |
Gets a collection of the link's control points. When drawing shadows, the points are offset as necessary. | |
true if now drawing the link's shadow, otherwise false. | |
An object implementing the IGraphics interface whose methods should be used to draw the link. |
RemarksThis event is raised for links whose CustomDraw property is enabled.
See Also