DrawingAttributes.Equals(Object) 方法

定義

判斷指定的 DrawingAttributes 物件是否等於目前的 DrawingAttributes 物件。

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

參數

o
Object

要與目前 DrawingAttributes 物件進行比較的 DrawingAttributes 物件。

傳回

如果物件相等則為 true,否則為 false

範例

下列範例會比較兩 DrawingAttributes 個物件是否相等。 由於 和 上的 Colorattributes2attributes1HeightStylusTipWidth 屬性都設定為相同的值,因此會出現「DrawingAttributes 相等」訊息。

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

備註

如果下列屬性相等,則兩 DrawingAttributes 個物件相等:

注意

方法 Equals 不會檢查自訂屬性是否相等。

適用於

另請參閱