RectangleF.Inequality(RectangleF, RectangleF) Operator
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Tests whether two RectangleF structures differ in location or size.
public:
static bool operator !=(System::Drawing::RectangleF left, System::Drawing::RectangleF right);
public static bool operator != (System.Drawing.RectangleF left, System.Drawing.RectangleF right);
static member op_Inequality : System.Drawing.RectangleF * System.Drawing.RectangleF -> bool
Public Shared Operator != (left As RectangleF, right As RectangleF) As Boolean
Parameters
- left
- RectangleF
The RectangleF structure that is to the left of the inequality operator.
- right
- RectangleF
The RectangleF structure that is to the right of the inequality operator.
Returns
true
if any of the X , Y, Width, or Height properties of the two Rectangle structures are unequal; otherwise, false
.
Applies to
Collaborate with us on GitHub
The source for this content can be found on GitHub, where you can also create and review issues and pull requests. For more information, see our contributor guide.