Determines if this rectangle intersects with rect.

Namespace:  EGIS.ShapeFileLib
Assembly:  EGIS.ShapeFileLib (in EGIS.ShapeFileLib.dll)

Syntax

Visual Basic
Public Function IntersectsWith ( _
	rect As RectangleD _
) As Boolean
C#
public bool IntersectsWith(
	RectangleD rect
)
Visual C++
public:
bool IntersectsWith(
	RectangleD rect
)
JavaScript
function intersectsWith(rect);

Parameters

rect
Type: EGIS.ShapeFileLib..::..RectangleD
The rectangle to test.

Return Value

This method returns true if there is any intersection.

See Also