RectangleFInequality Operator |
Tests whether two System.Drawing.RectangleF structures differ in location
or size.
Namespace:
Easymap.AddIn.Common.Graphics
Assembly:
EasyMap.AddIn (in EasyMap.AddIn.dll) Version: 12.0.0.0
Syntax public static bool operator !=(
RectangleF left,
RectangleF right
)
Public Shared Operator <> (
left As RectangleF,
right As RectangleF
) As Boolean
Parameters
- left
- Type: Easymap.AddIn.Common.GraphicsRectangleF
The System.Drawing.RectangleF structure that is to the left of the inequality
operator. - right
- Type: Easymap.AddIn.Common.GraphicsRectangleF
The System.Drawing.RectangleF structure that is to the right of the inequality
operator.
Return Value
Type:
BooleanThis operator returns true if any of the System.Drawing.RectangleF.X , System.Drawing.RectangleF.Y,
System.Drawing.RectangleF.Width, or System.Drawing.RectangleF.Height properties
of the two System.Drawing.Rectangle structures are unequal; otherwise false.
See Also