Search
DiagramNode.ContainsPoint Method (PointF, Single)
See Also
 





Tests whether the specified point is contained within the outline of this node, relaxed with the specified threshold.

Namespace: MindFusion.Diagramming
Assembly: MindFusion.Diagramming

 Syntax

C#  Copy Code

public override bool ContainsPoint (
    PointF point,
    float threshold
)

Visual Basic  Copy Code

Public Overrides Function ContainsPoint( _
    point As PointF, _
    threshold As Single _
) As Boolean

 Parameters

point
The point to check.
threshold

Specifies the size of the area around the node outlines where the point is still considered inside the node.

 Return Value

true if this node contains the specified point; otherwise, false.

 See Also