Rect.Inequality(Rect, Rect) Operator
Definitie
Belangrijk
Bepaalde informatie heeft betrekking op een voorlopige productversie die aanzienlijk kan worden gewijzigd voordat deze wordt uitgebracht. Microsoft biedt geen enkele expliciete of impliciete garanties met betrekking tot de informatie die hier wordt verstrekt.
Vergelijkt twee rechthoeken voor ongelijkheid.
public:
static bool operator !=(System::Windows::Rect rect1, System::Windows::Rect rect2);
public static bool operator !=(System.Windows.Rect rect1, System.Windows.Rect rect2);
static member op_Inequality : System.Windows.Rect * System.Windows.Rect -> bool
Public Shared Operator != (rect1 As Rect, rect2 As Rect) As Boolean
Parameters
- rect1
- Rect
De eerste rechthoek die u wilt vergelijken.
- rect2
- Rect
De tweede rechthoek die u wilt vergelijken.
Retouren
trueals de rechthoeken niet dezelfde Location en Size waarden hebben, anders. false
Voorbeelden
In het volgende voorbeeld ziet u hoe u de Inequality operator gebruikt om te bepalen of twee rechthoeken niet exact gelijk zijn.
private Boolean overloadedInequalityOperatorExample()
{
// Initialize new rectangle.
Rect myRectangle = new Rect();
// The Location property specifies the coordinates of the upper left-hand
// corner of the rectangle.
myRectangle.Location = new Point(10, 5);
// Set the Size property of the rectangle with a width of 200
// and a height of 50.
myRectangle.Size = new Size(200, 50);
// Create second rectangle to compare to the first.
Rect myRectangle2 = new Rect();
myRectangle2.Location = new Point(0, 0);
myRectangle2.Size = new Size(200, 50);
// Check if the two Rects are not equal using the overloaded inequality operator.
// notEqual is true because although the size of each rectangle is the same,
// the locations are different.
bool notEqual = (myRectangle != myRectangle2);
// Returns true.
return notEqual;
}
Private Function overloadedInequalityOperatorExample() As Boolean
' Initialize new rectangle.
Dim myRectangle As New Rect()
' The Location property specifies the coordinates of the upper left-hand
' corner of the rectangle.
myRectangle.Location = New Point(10, 5)
' Set the Size property of the rectangle with a width of 200
' and a height of 50.
myRectangle.Size = New Size(200, 50)
' Create second rectangle to compare to the first.
Dim myRectangle2 As New Rect()
myRectangle2.Location = New Point(0, 0)
myRectangle2.Size = New Size(200, 50)
' Check if the two Rects are not equal using the overloaded inequality operator.
' notEqual is true because although the size of each rectangle is the same,
' the locations are different.
Dim notEqual As Boolean = (myRectangle <> myRectangle2)
' Returns true.
Return notEqual
End Function
Opmerkingen
Met deze bewerking wordt getest op objectongelijkheid.
In deze vergelijking worden twee instanties Double.NaN als gelijk beschouwd.
Note
De positie en afmetingen van een rechthoek worden beschreven door Double waarden. Omdat Double waarden precisie kunnen verliezen wanneer ze worden uitgevoerd, kan een vergelijking tussen twee waarden die logisch gelijk zijn, mislukken.
De equivalente methode voor deze operator is Rect.Equals(Rect, Rect)