Tests whether two RectangleD structures differ in location or 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 inequality operator.
right
Type: EGIS.ShapeFileLib..::.RectangleD
The RectangleD structure that is to the right of the inequality operator.

Return Value

This operator returns true if any of the X()()() , Y()()(), Width()()(), or Height()()() properties of the two Rectangle structures are unequal; otherwise false.

See Also