DrawingAttributes.Equals(Object) Yöntem
Tanım
Önemli
Bazı bilgiler ürünün ön sürümüyle ilgilidir ve sürüm öncesinde önemli değişiklikler yapılmış olabilir. Burada verilen bilgilerle ilgili olarak Microsoft açık veya zımni hiçbir garanti vermez.
Belirtilen DrawingAttributes nesnenin geçerli DrawingAttributes nesneye eşit olup olmadığını belirler.
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
Parametreler
- o
- Object
DrawingAttributes Geçerli DrawingAttributes nesneyle karşılaştıracak nesne.
Döndürülenler
true
nesneler eşitse; aksi takdirde , false
.
Örnekler
Aşağıdaki örnek, eşitlik için iki DrawingAttributes nesneyi karşılaştırır.
Colorve üzerindeki attributes1
attributes2
, StylusTip, Heightve Width özellikleri aynı değerlere ayarlandığından, "DrawingAttributes eşittir" iletisi görüntülenir.
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
Açıklamalar
Aşağıdaki özellikler eşitse iki DrawingAttributes nesne eşittir:
Not
Equals yöntemi, eşitlik için özel özellikleri denetlemez.