StylusPoint.Equals Méthode
Définition
Important
Certaines informations portent sur la préversion du produit qui est susceptible d’être en grande partie modifiée avant sa publication. Microsoft exclut toute garantie, expresse ou implicite, concernant les informations fournies ici.
Compare deux objets StylusPoint pour déterminer s’ils sont égaux.
Surcharges
Equals(Object) |
Retourne une valeur indiquant si l'objet spécifié est égal au StylusPoint. |
Equals(StylusPoint) |
Retourne une valeur booléenne qui indique si le StylusPoint spécifié est égal au StylusPointactuel. |
Equals(StylusPoint, StylusPoint) |
Retourne une valeur booléenne qui indique si les deux objets StylusPoint spécifiés sont égaux. |
Equals(Object)
Retourne une valeur indiquant si l'objet spécifié est égal au 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
Paramètres
- o
- Object
StylusPoint à comparer à l'objet StylusPoint actuel.
Retours
true
si les objets sont égaux ; sinon false
.
Exemples
L’exemple suivant vérifie l’égalité de deux StylusPoint objets. Étant donné que les Xpropriétés , Yet PressureFactor sur point1
et point2
sont définies sur la même valeur, les « deux objets StylusPoint sont égaux ». Le message s’affiche.
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
S’applique à
Equals(StylusPoint)
Retourne une valeur booléenne qui indique si le StylusPoint spécifié est égal au StylusPointactuel.
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
Paramètres
- value
- StylusPoint
StylusPoint à comparer à l'objet StylusPoint actuel.
Retours
true
si les objets StylusPoint sont égaux ; sinon, false
.
Implémente
Exemples
L’exemple suivant vérifie l’égalité de deux StylusPoint objets. Étant donné que les Xpropriétés , Yet PressureFactor sur point1
et point2
sont définies sur la même valeur, les « deux objets StylusPoint sont égaux ». Le message s’affiche.
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
S’applique à
Equals(StylusPoint, StylusPoint)
Retourne une valeur booléenne qui indique si les deux objets StylusPoint spécifiés sont égaux.
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
Paramètres
- stylusPoint1
- StylusPoint
Premier StylusPoint à comparer.
- stylusPoint2
- StylusPoint
Deuxième StylusPoint à comparer.
Retours
true
si les objets StylusPoint sont égaux ; sinon, false
.
Exemples
L’exemple suivant vérifie l’égalité de deux StylusPoint objets. Étant donné que les Xpropriétés , Yet PressureFactor sur point1
et point2
sont définies sur la même valeur, les « deux objets StylusPoint sont égaux ». Le message s’affiche.
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