StylusPoint.Equals Método
Definição
Importante
Algumas informações se referem a produtos de pré-lançamento que podem ser substancialmente modificados antes do lançamento. A Microsoft não oferece garantias, expressas ou implícitas, das informações aqui fornecidas.
Compara dois objetos StylusPoint quanto à igualdade.
Sobrecargas
Equals(Object) |
Retorna um valor que indica se o objeto especificado é igual ao StylusPoint. |
Equals(StylusPoint) |
Retorna um valor booliano que indica se o StylusPoint especificado é igual ao StylusPoint atual. |
Equals(StylusPoint, StylusPoint) |
Retorna um valor booliano que indica se os dois objetos StylusPoint especificados são iguais. |
Equals(Object)
Retorna um valor que indica se o objeto especificado é igual ao StylusPoint.
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
Parâmetros
- o
- Object
O StylusPoint a ser comparado com o StylusPoint atual.
Retornos
true
se os objetos forem iguais; caso contrário, false
.
Exemplos
O exemplo a seguir verifica a igualdade de dois StylusPoint objetos. Como as Xpropriedades , Ye PressureFactor em point1
e point2
são definidas com o mesmo valor, "Os dois objetos StylusPoint são iguais". A mensagem é exibida.
StylusPoint point1 = new StylusPoint();
StylusPoint point2 = new StylusPoint();
point1.X = 150;
point1.Y = 400;
point1.PressureFactor = 0.45f;
point2.X = 150;
point2.Y = 400;
point2.PressureFactor = 0.45f;
Dim point1 As New StylusPoint()
Dim point2 As New StylusPoint()
point1.X = 150
point1.Y = 400
point1.PressureFactor = 0.45F
point2.X = 150
point2.Y = 400
point2.PressureFactor = 0.45F
if (point2.Equals(point1))
{
MessageBox.Show("The two StylusPoint objects are equal.");
}
else
{
MessageBox.Show("The two StylusPoint objects are not equal.");
}
If point2.Equals(point1) Then
MessageBox.Show("The two StylusPoint objects are equal.")
Else
MessageBox.Show("The two StylusPoint objects are not equal.")
End If
Aplica-se a
Equals(StylusPoint)
Retorna um valor booliano que indica se o StylusPoint especificado é igual ao StylusPoint atual.
public:
virtual bool Equals(System::Windows::Input::StylusPoint value);
public bool Equals (System.Windows.Input.StylusPoint value);
override this.Equals : System.Windows.Input.StylusPoint -> bool
Public Function Equals (value As StylusPoint) As Boolean
Parâmetros
- value
- StylusPoint
O StylusPoint a ser comparado com o StylusPoint atual.
Retornos
true
se os objetos StylusPoint forem iguais, caso contrário, false
.
Implementações
Exemplos
O exemplo a seguir verifica a igualdade de dois StylusPoint objetos. Como as Xpropriedades , Ye PressureFactor em point1
e point2
são definidas com o mesmo valor, "Os dois objetos StylusPoint são iguais". A mensagem é exibida.
StylusPoint point1 = new StylusPoint();
StylusPoint point2 = new StylusPoint();
point1.X = 150;
point1.Y = 400;
point1.PressureFactor = 0.45f;
point2.X = 150;
point2.Y = 400;
point2.PressureFactor = 0.45f;
Dim point1 As New StylusPoint()
Dim point2 As New StylusPoint()
point1.X = 150
point1.Y = 400
point1.PressureFactor = 0.45F
point2.X = 150
point2.Y = 400
point2.PressureFactor = 0.45F
if (point2.Equals(point1))
{
MessageBox.Show("The two StylusPoint objects are equal.");
}
else
{
MessageBox.Show("The two StylusPoint objects are not equal.");
}
If point2.Equals(point1) Then
MessageBox.Show("The two StylusPoint objects are equal.")
Else
MessageBox.Show("The two StylusPoint objects are not equal.")
End If
Aplica-se a
Equals(StylusPoint, StylusPoint)
Retorna um valor booliano que indica se os dois objetos StylusPoint especificados são iguais.
public:
static bool Equals(System::Windows::Input::StylusPoint stylusPoint1, System::Windows::Input::StylusPoint stylusPoint2);
public static bool Equals (System.Windows.Input.StylusPoint stylusPoint1, System.Windows.Input.StylusPoint stylusPoint2);
static member Equals : System.Windows.Input.StylusPoint * System.Windows.Input.StylusPoint -> bool
Public Shared Function Equals (stylusPoint1 As StylusPoint, stylusPoint2 As StylusPoint) As Boolean
Parâmetros
- stylusPoint1
- StylusPoint
O primeiro StylusPoint a ser comparado.
- stylusPoint2
- StylusPoint
O segundo StylusPoint a ser comparado.
Retornos
true
se os objetos StylusPoint forem iguais, caso contrário, false
.
Exemplos
O exemplo a seguir verifica a igualdade de dois StylusPoint objetos. Como as Xpropriedades , Ye PressureFactor em point1
e point2
são definidas com o mesmo valor, "Os dois objetos StylusPoint são iguais". A mensagem é exibida.
StylusPoint point1 = new StylusPoint();
StylusPoint point2 = new StylusPoint();
point1.X = 150;
point1.Y = 400;
point1.PressureFactor = 0.45f;
point2.X = 150;
point2.Y = 400;
point2.PressureFactor = 0.45f;
Dim point1 As New StylusPoint()
Dim point2 As New StylusPoint()
point1.X = 150
point1.Y = 400
point1.PressureFactor = 0.45F
point2.X = 150
point2.Y = 400
point2.PressureFactor = 0.45F
if (StylusPoint.Equals(point1, point2))
{
MessageBox.Show("The two StylusPoint objects are equal.");
}
else
{
MessageBox.Show("The two StylusPoint objects are not equal.");
}
If StylusPoint.Equals(point1, point2) Then
MessageBox.Show("The two StylusPoint objects are equal.")
Else
MessageBox.Show("The two StylusPoint objects are not equal.")
End If