Tests whether two SizeD structures are equal.

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

Syntax

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

Parameters

sz1
Type: EGIS.ShapeFileLib..::..SizeD
The SizeD structure on the left side of the equality operator.
sz2
Type: EGIS.ShapeFileLib..::..SizeD
The SizeD structure on the right of the equality operator.

Return Value

This operator returns true if sz1 and sz2 have equal width and height; otherwise, false.

See Also