Compares two PointD structures. The result specifies whether the values of the X()()()() and Y()()()() properties of the two PointD structures are equal.

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

Syntax

Visual Basic
Public Shared Operator = ( _
	left As PointD, _
	right As PointD _
) As Boolean
C#
public static bool operator ==(
	PointD left,
	PointD right
)
Visual C++
public:
static bool operator ==(
	PointD left, 
	PointD right
)
JavaScript
JavaScript does not support overloaded operators.

Parameters

left
Type: EGIS.ShapeFileLib..::..PointD
A PointD to compare.
right
Type: EGIS.ShapeFileLib..::..PointD
A PointD to compare.

Return Value

true if the X()()()() and Y()()()() values of the left and right PointD structures are equal; otherwise, false.

See Also