Tests whether two RectangleD structures have equal location and size.

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

Syntax

Visual Basic (Declaration)
Public Shared Operator = ( _
	left As RectangleD, _
	right As RectangleD _
) As Boolean
C#
public static bool operator ==(
	RectangleD left,
	RectangleD right
)
Visual C++
public:
static bool operator ==(
	RectangleD left, 
	RectangleD right
)

Parameters

left
Type: EGIS.ShapeFileLib..::.RectangleD
The RectangleD structure that is to the left of the equality operator.
right
Type: EGIS.ShapeFileLib..::.RectangleD
The RectangleD structure that is to the right of the equality operator.

Return Value

This operator returns true if the two specified RectangleD structures have equal X()()(), Y()()(), Width()()(), and Height()()() properties.

See Also