RectangleInequality Operator |
Compares two rectangles for inequality
Namespace:
Eto.Drawing
Assembly:
Eto (in Eto.dll) Version: 2.5.3-dev
Syntax public static bool operator !=(
Rectangle rect1,
Rectangle rect2
)
Public Shared Operator <> (
rect1 As Rectangle,
rect2 As Rectangle
) As Boolean
static let inline (<>)
rect1 : Rectangle *
rect2 : Rectangle : bool
Parameters
- rect1
- Type: Eto.DrawingRectangle
First rectangle to compare - rect2
- Type: Eto.DrawingRectangle
Second rectangle to compare
Return Value
Type:
BooleanTrue if the two rectangles are not equal, false otherwise
See Also