DrawingAttributes.Equals(Object) Metoda
Definice
Důležité
Některé informace platí pro předběžně vydaný produkt, který se může zásadně změnit, než ho výrobce nebo autor vydá. Microsoft neposkytuje žádné záruky, výslovné ani předpokládané, týkající se zde uváděných informací.
Určuje, zda je zadaný DrawingAttributes objekt roven aktuálnímu DrawingAttributes objektu.
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
Objekt DrawingAttributes , který chcete porovnat s aktuálním DrawingAttributes objektem.
Návraty
true
pokud jsou objekty rovny; v opačném případě . false
Příklady
Následující příklad porovnává dva DrawingAttributes objekty pro rovnost.
ColorVzhledem k tomu, že vlastnosti , StylusTip, Heighta Width na attributes1
a attributes2
jsou nastaveny na stejné hodnoty, zobrazí se zpráva "DrawingAttributes jsou si rovni".
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
Poznámky
Dva DrawingAttributes objekty jsou si rovny, pokud jsou následující vlastnosti rovny:
Poznámka
Metoda Equals nekontroluje vlastní vlastnosti rovnosti.