MindFusion.Wpf Pack Programmer's Guide
Diagram.GetLinkAt Method (Point, Double, Boolean, Int32@)
See Also
 





Finds and returns the top-most link that lies at the specified location, optionally excluding locked links from the search. The zero-based index of the exact link segment at the specified position is also returned.

Namespace: MindFusion.Diagramming.Wpf
Assembly: MindFusion.Diagramming.Wpf

 Syntax

C#  Copy Code

public DiagramLink GetLinkAt (
    Point point,
    double maxDist,
    bool exclLocked,
    ref int segmNum
)

Visual Basic  Copy Code

Public Function GetLinkAt( _
    point As Point, _
    maxDist As Double, _
    exclLocked As Boolean, _
    ByRef segmNum As Integer _
) As DiagramLink

 Parameters

point

A Point instance identifying a diagram location.

maxDist
The maximal distance between the point and a link, within which to consider the point as lying on the link.
exclLocked
Specifies that locked links should be ignored by the search.
segmNum
The zero-based index of the link's segment at which the point is lying is returned here.

 Return Value

The DiagramLink found or a null reference (Nothing in Visual Basic) if no item has been found.

 Remarks

Call the method to get the link at a certain place in the document. The method searches starting from the top of z-order and returns the first link found. The specified point might not be laying exactly on the link, but within a certain threshold distance from it. This threshold is specified through the second parameter. Locked and invisible links can be skipped from the search by setting the third parameter to true. The link's segment closest to the point is returned through the fourth parameter.

 See Also

GetLinkAt Method Overload List
Diagram Members
Diagram Class
MindFusion.Diagramming.Wpf Namespace
GetNodeAt Method
GetItemAt Method