Search
DiagramItem.ContainsPoint Method (PointF)
See Also
 





Determines whether this item contains the specified point.

Namespace: MindFusion.Diagramming
Package: MindFusion.Diagramming

 Syntax

C#  Copy Code

public abstract bool ContainsPoint (
    PointF point
)

Visual Basic  Copy Code

Public MustOverride Function ContainsPoint( _
    point As PointF _
) As Boolean

 Parameters

point
A PointF value specifying the logical coordinates of a diagram point.

 Return Value

true it this item contains the specified point; otherwise, false.

 Remarks

This method is used during hit-testing to see if the mouse is inside the item.

 See Also