Search
DiagramItem.ContainsPoint Method (Point)
See Also
 





Determines whether this item contains the specified point.

Namespace: MindFusion.Diagramming
Assembly: MindFusion.Diagramming

 Syntax

C#  Copy Code

public abstract bool ContainsPoint (
    Point point
)

Visual Basic  Copy Code

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

 Parameters

point
A Microsoft.Maui.Graphics.Point 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