Search
InternalUtils.PointInRect Method (PointF, RectangleF)
See Also
 





Checks whether the specified rectangle contains the specified point.

Namespace: MindFusion.Diagramming
Package: MindFusion.Diagramming

 Syntax

C#  Copy Code

public static bool PointInRect (
    PointF pt,
    RectangleF rc
)

Visual Basic  Copy Code

Public Shared Function PointInRect( _
    pt As PointF, _
    rc As RectangleF _
) As Boolean

 Parameters

pt

The point to be checked.

rc

The rectangle to be checked.

 Return Value

true if the specified rectangle contains the specified point; otherwise, false.

 Remarks

This method supports the NetDiagram infrastructure and is not intended to be used directly from your code.

 See Also