Search
InternalUtils.PointsInRect Method
See Also
 





Checks whether the specified rectangle contains the specified points.

Namespace: MindFusion.Diagramming
Package: MindFusion.Diagramming

 Syntax

C#  Copy Code

public static bool PointsInRect (
    PointCollection points,
    RectangleF rect
)

Visual Basic  Copy Code

Public Shared Function PointsInRect( _
    points As PointCollection, _
    rect As RectangleF _
) As Boolean

 Parameters

points

A list of points.

rect

A rectangle.

 Return Value

true if the rectangle contains all points from the list.

 See Also