Click or drag to resize

RectangleFEquality Operator

Tests whether two System.Drawing.RectangleF structures have equal location and size.

Namespace:  Easymap.AddIn.Common.Graphics
Assembly:  Easymap.AddIn (in Easymap.AddIn.dll) Version: 11.2.0.0
Syntax
public static bool operator ==(
	RectangleF left,
	RectangleF right
)

Parameters

left
Type: Easymap.AddIn.Common.GraphicsRectangleF
The System.Drawing.RectangleF structure that is to the left of the equality operator.
right
Type: Easymap.AddIn.Common.GraphicsRectangleF
The System.Drawing.RectangleF structure that is to the right of the equality operator.

Return Value

Type: Boolean
This operator returns true if the two specified System.Drawing.RectangleF structures have equal System.Drawing.RectangleF.X, System.Drawing.RectangleF.Y, System.Drawing.RectangleF.Width, and System.Drawing.RectangleF.Height properties.
See Also