DrawingAttributes.Equals(Object) Metoda
Definicja
Ważne
Niektóre informacje odnoszą się do produktu w wersji wstępnej, który może zostać znacząco zmodyfikowany przed wydaniem. Firma Microsoft nie udziela żadnych gwarancji, jawnych lub domniemanych, w odniesieniu do informacji podanych w tym miejscu.
Określa, czy określony DrawingAttributes obiekt jest równy bieżącemu DrawingAttributes obiektowi.
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
Parametry
- o
- Object
DrawingAttributes Obiekt do porównania z bieżącym DrawingAttributes obiektem.
Zwraca
true
jeśli obiekty są równe; w przeciwnym razie , false
.
Przykłady
Poniższy przykład porównuje dwa DrawingAttributes obiekty pod kątem równości.
ColorPonieważ właściwości attributes1
attributes2
, , HeightStylusTipi Width są ustawione na te same wartości, zostanie wyświetlony komunikat "RysunekAttributes są równe".
DrawingAttributes attributes1 = new DrawingAttributes();
attributes1.Color = Colors.Blue;
attributes1.StylusTip = StylusTip.Rectangle;
attributes1.Height = 5;
attributes1.Width = 5;
DrawingAttributes attributes2 = new DrawingAttributes();
attributes2.Color = Colors.Blue;
attributes2.StylusTip = StylusTip.Rectangle;
attributes2.Height = 5;
attributes2.Width = 5;
Dim attributes1 As New DrawingAttributes()
attributes1.Color = Colors.Blue
attributes1.StylusTip = StylusTip.Rectangle
attributes1.Height = 5
attributes1.Width = 5
Dim attributes2 As New DrawingAttributes()
attributes2.Color = Colors.Blue
attributes2.StylusTip = StylusTip.Rectangle
attributes2.Height = 5
attributes2.Width = 5
if (attributes1.Equals(attributes2))
{
MessageBox.Show("The DrawingAttributes are equal");
}
else
{
MessageBox.Show("The DrawingAttributes are not equal");
}
If attributes1.Equals(attributes2) Then
MessageBox.Show("The DrawingAttributes are equal")
Else
MessageBox.Show("The DrawingAttributes are not equal")
End If
Uwagi
Dwa DrawingAttributes obiekty są równe, jeśli następujące właściwości są równe:
Uwaga
Metoda Equals nie sprawdza właściwości niestandardowych pod kątem równości.