StylusPoint.Inequality(StylusPoint, StylusPoint) Operador

Definición

Devuelve un valor booleano que indica si los dos objetos StylusPoint especificados son diferentes.

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 op_Inequality : System.Windows.Input.StylusPoint * System.Windows.Input.StylusPoint -> bool
Public Shared Operator != (stylusPoint1 As StylusPoint, stylusPoint2 As StylusPoint) As Boolean

Parámetros

stylusPoint1
StylusPoint

Primer objeto StylusPoint que se va a comparar.

stylusPoint2
StylusPoint

Segundo objeto StylusPoint que se va a comparar.

Devoluciones

Es true si los objetos StylusPoint son distintos; en caso contrario, es false.

Ejemplos

En el ejemplo siguiente se muestra cómo comprobar dos StylusPoint objetos de desigualdad. Dado que las Xpropiedades , Yy de y point2PressureFactor se establecen en point1 el mismo valor, los objetos "Los dos objetos StylusPoint son iguales". Aparece el mensaje.

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 not equal.");
}
else
{
    MessageBox.Show("The two StylusPoint objects are equal.");
}
If point1 <> point2 Then
    MessageBox.Show("The two StylusPoint objects are not equal.")
Else
    MessageBox.Show("The two StylusPoint objects are equal.")
End If

Comentarios

El método equivalente para este operador es la negación de Equals

Se aplica a