Search
DiagramItem.ContainsPoint Method
See Also
 






Determines whether this item contains the specified point.

Namespace: MindFusion.Diagramming
Assembly: MindFusion.Diagramming

 Syntax

C#  Copy Code

public virtual bool ContainsPoint (
    Point point
)

Visual Basic  Copy Code

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

 Parameters

point

The point to check.

 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