Rect.Equality(Rect, Rect) Opérateur
Définition
Important
Certaines informations portent sur la préversion du produit qui est susceptible d’être en grande partie modifiée avant sa publication. Microsoft exclut toute garantie, expresse ou implicite, concernant les informations fournies ici.
Compare l'égalité exacte de deux rectangles.
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 ( = ) : System.Windows.Rect * System.Windows.Rect -> bool
Public Shared Operator == (rect1 As Rect, rect2 As Rect) As Boolean
Paramètres
- rect1
- Rect
Premier rectangle à comparer.
- rect2
- Rect
Deuxième rectangle à comparer.
Retours
true
si les rectangles ont les mêmes Location et valeurs Size; sinon, false
.
Exemples
L’exemple suivant montre comment utiliser l’opérateur Equality pour déterminer si deux rectangles sont exactement égaux.
private Boolean overloadedEqualityOperatorExample()
{
// 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 exactly equal using the overloaded equality operator.
// areEqual is false because although the size of each rectangle is the same,
// the locations are different.
bool areEqual = (myRectangle == myRectangle2);
// Returns false.
return areEqual;
}
Private Function overloadedEqualityOperatorExample() 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 exactly equal using the overloaded equality operator.
' areEqual is false because although the size of each rectangle is the same,
' the locations are different.
Dim areEqual As Boolean = (myRectangle = myRectangle2)
' Returns false.
Return areEqual
End Function
Remarques
Cette opération teste l’égalité des objets.
Dans cette comparaison, deux instances de Double.NaN sont considérées comme égales.
Notes
La position et les dimensions d’un rectangle sont décrites par Double des valeurs. Étant donné que Double les valeurs peuvent perdre de précision lorsqu’elles sont exploitées, une comparaison entre deux valeurs logiquement égales peut échouer.
La méthode équivalente pour cet opérateur est Rect.Equals(Rect, Rect)