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