Determines if the specified point is contained within this RectangleD structure.

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

Syntax

Visual Basic
Public Function Contains ( _
	pt As PointD _
) As Boolean
C#
public bool Contains(
	PointD pt
)
Visual C++
public:
bool Contains(
	PointD pt
)
JavaScript
function contains(pt);

Parameters

pt
Type: EGIS.ShapeFileLib..::..PointD
The PointD to test.

Return Value

This method returns true if the point represented by the pt parameter is contained within this RectangleD structure; otherwise false.

See Also