RectangleFEquality Operator |
Tests whether two System.Drawing.RectangleF structures have equal location
and size.
Namespace: Easymap.AddIn.Common.GraphicsAssembly: EasyMap.AddIn (in EasyMap.AddIn.dll) Version: 12.3.0.0
Syntaxpublic static bool operator ==(
RectangleF left,
RectangleF right
)
Public Shared Operator = (
left As RectangleF,
right As RectangleF
) As Boolean
Parameters
- left RectangleF
- The System.Drawing.RectangleF structure that is to the left of the equality
operator.
- right RectangleF
- The System.Drawing.RectangleF structure that is to the right of the equality
operator.
Return Value
BooleanThis 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