Rect.Equals Methode

Definition

Gibt an, ob zwei Rechtecke gleich sind.

Überlädt

Equals(Rect, Rect)

Gibt an, ob die angegebenen Rechtecke gleich sind.

Equals(Object)

Gibt an, ob das angegebene Objekt und das aktuelle Rechteck gleich sind.

Equals(Rect)

Gibt an, ob as angegebene Rechteck und das aktuelle Rechteck gleich sind.

Equals(Rect, Rect)

Gibt an, ob die angegebenen Rechtecke gleich sind.

public:
 static bool Equals(System::Windows::Rect rect1, System::Windows::Rect rect2);
public static bool Equals (System.Windows.Rect rect1, System.Windows.Rect rect2);
static member Equals : System.Windows.Rect * System.Windows.Rect -> bool
Public Shared Function Equals (rect1 As Rect, rect2 As Rect) As Boolean

Parameter

rect1
Rect

Das erste der zu vergleichenden Rechtecke.

rect2
Rect

Das zweite der zu vergleichenden Rechtecke.

Gibt zurück

true, wenn die Rechtecke über den gleichen Location-Wert und Size-Wert verfügen, andernfalls false.

Beispiele

Im folgenden Beispiel wird gezeigt, wie die Equals(Rect, Rect) -Methode verwendet wird, um zu bestimmen, ob ein Rechteck gleich einem anderen ist.

private bool rectEqualsExample2()
{
    // Create a rectangle.
    Rect myRectangle1 = new Rect();

    // The Location property specifies the coordinates of the upper left-hand 
    // corner of the rectangle. 
    myRectangle1.Location = new Point(10, 5);

    // Set the Size property of the rectangle with a width of 200
    // and a height of 50.
    myRectangle1.Size = new Size(200, 50);

    // Create second rectangle to compare to the first.
    Rect myRectangle2 = new Rect();
    myRectangle2.Location = new Point(10, 5);
    myRectangle2.Size = new Size(200, 50);

    // Using the Equals method, see if the second rectangle is 
    // the same as the first rectangle. doesEqual is true because
    // both rectangles are exactly the same in that they both have the 
    // same location and size.
    bool doesEqual = Rect.Equals(myRectangle1, myRectangle2);

    return doesEqual;
}

Hinweise

Dieser Vorgang testet auf Objektgleichheit.

In diesem Vergleich werden zwei Instanzen von Double.NaN als gleich angesehen.

Hinweis

Position und Dimensionen eines Rechtecks werden durch Double Werte beschrieben. Da Double Werte bei der Operation an Genauigkeit verlieren können, kann ein Vergleich zwischen zwei logisch gleich großen Werten fehlschlagen.

Weitere Informationen

Gilt für:

Equals(Object)

Gibt an, ob das angegebene Objekt und das aktuelle Rechteck gleich sind.

public:
 override bool Equals(System::Object ^ o);
public override bool Equals (object o);
override this.Equals : obj -> bool
Public Overrides Function Equals (o As Object) As Boolean

Parameter

o
Object

Das Objekt, mit dem das aktuelle Rechteck verglichen werden soll.

Gibt zurück

true, wenn o ein Rect ist und den gleichen Location-Wert und Size-Wert wie das aktuelle Rechteck aufweist, andernfalls false.

Beispiele

Im folgenden Beispiel wird gezeigt, wie die Equals(Object) -Methode verwendet wird, um zu bestimmen, ob ein Rechteck gleich einem angegebenen Objekt ist.

private bool rectEqualsExample1()
{
    // Create a rectangle.
    Rect myRectangle1 = new Rect();

    // The Location property specifies the coordinates of the upper left-hand 
    // corner of the rectangle. 
    myRectangle1.Location = new Point(10, 5);

    // Set the Size property of the rectangle with a width of 200
    // and a height of 50.
    myRectangle1.Size = new Size(200, 50);

    // Create second rectangle to compare to the first.
    Rect myRectangle2 = new Rect();
    myRectangle2.Location = new Point(10, 5);
    myRectangle2.Size = new Size(200, 50);

    // Using the Equals method, see if the second rectangle is the
    // same as the first rectangle. doesEqual is true because both
    // rectangles are exactly the same with respect to location and size. 
    bool doesEqual = myRectangle1.Equals(myRectangle2);

    return doesEqual;
}

Hinweise

Dieser Vorgang testet auf Objektgleichheit.

In diesem Vergleich werden zwei Instanzen von Double.NaN als gleich angesehen.

Hinweis

Position und Dimensionen eines Rechtecks werden durch Double Werte beschrieben. Da Double Werte bei der Operation an Genauigkeit verlieren können, kann ein Vergleich zwischen zwei logisch gleich großen Werten fehlschlagen.

Weitere Informationen

Gilt für:

Equals(Rect)

Gibt an, ob as angegebene Rechteck und das aktuelle Rechteck gleich sind.

public:
 bool Equals(System::Windows::Rect value);
public bool Equals (System.Windows.Rect value);
override this.Equals : System.Windows.Rect -> bool
Public Function Equals (value As Rect) As Boolean

Parameter

value
Rect

Das Rechteck, mit dem das aktuelle Rechteck verglichen werden soll.

Gibt zurück

true, das angegebene Rechteck den gleichen Location-Wert und Size-Wert wie das aktuelle Rechteck aufweist, andernfalls false.

Beispiele

Das folgende Beispiel zeigt, wie Sie mit der Equals(Rect) -Methode bestimmen, ob ein Rechteck gleich einem angegebenen Rechteck ist.

private bool rectEqualsExample1()
{
    // Create a rectangle.
    Rect myRectangle1 = new Rect();

    // The Location property specifies the coordinates of the upper left-hand 
    // corner of the rectangle. 
    myRectangle1.Location = new Point(10, 5);

    // Set the Size property of the rectangle with a width of 200
    // and a height of 50.
    myRectangle1.Size = new Size(200, 50);

    // Create second rectangle to compare to the first.
    Rect myRectangle2 = new Rect();
    myRectangle2.Location = new Point(10, 5);
    myRectangle2.Size = new Size(200, 50);

    // Using the Equals method, see if the second rectangle is the
    // same as the first rectangle. doesEqual is true because both
    // rectangles are exactly the same with respect to location and size. 
    bool doesEqual = myRectangle1.Equals(myRectangle2);

    return doesEqual;
}

Hinweise

Dieser Vorgang testet auf Objektgleichheit.

In diesem Vergleich werden zwei Instanzen von Double.NaN als gleich angesehen.

Hinweis

Position und Dimensionen eines Rechtecks werden durch Double Werte beschrieben. Da Double Werte bei der Operation an Genauigkeit verlieren können, kann ein Vergleich zwischen zwei logisch gleich großen Werten fehlschlagen.

Weitere Informationen

Gilt für: