StylusPoint.Equality(StylusPoint, StylusPoint) Operador
Definição
Importante
Algumas informações dizem respeito a um produto pré-lançado que pode ser substancialmente modificado antes de ser lançado. A Microsoft não faz garantias, de forma expressa ou implícita, em relação à informação aqui apresentada.
Compara dois objetos especificados StylusPoint e determina se são iguais.
public:
static bool operator ==(System::Windows::Input::StylusPoint stylusPoint1, System::Windows::Input::StylusPoint stylusPoint2);
public static bool operator ==(System.Windows.Input.StylusPoint stylusPoint1, System.Windows.Input.StylusPoint stylusPoint2);
static member ( = ) : System.Windows.Input.StylusPoint * System.Windows.Input.StylusPoint -> bool
Public Shared Operator == (stylusPoint1 As StylusPoint, stylusPoint2 As StylusPoint) As Boolean
Parâmetros
- stylusPoint1
- StylusPoint
O primeiro StylusPoint a comparar.
- stylusPoint2
- StylusPoint
O segundo StylusPoint para comparar.
Devoluções
true se os StylusPoint objetos forem iguais; caso contrário, false.
Exemplos
O exemplo seguinte verifica a igualdade de dois StylusPoint objetos. Como os X, , e PressureFactor as propriedades em point1 e point2 estão definidos com o mesmo valor, os "Os dois objetos StylusPoint são Yiguais." A mensagem aparece.
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 (point1 == point2)
{
MessageBox.Show("The two StylusPoint objects are equal.");
}
else
{
MessageBox.Show("The two StylusPoint objects are not equal.");
}
If point1 = point2 Then
MessageBox.Show("The two StylusPoint objects are equal.")
Else
MessageBox.Show("The two StylusPoint objects are not equal.")
End If
Observações
O método equivalente para este operador é StylusPoint.Equals(StylusPoint, StylusPoint)