DrawingAttributes.Inequality(DrawingAttributes, DrawingAttributes) Opérateur
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.
Détermine si les objets DrawingAttributes spécifiés ne sont pas identiques.
public:
static bool operator !=(System::Windows::Ink::DrawingAttributes ^ first, System::Windows::Ink::DrawingAttributes ^ second);
public static bool operator != (System.Windows.Ink.DrawingAttributes first, System.Windows.Ink.DrawingAttributes second);
static member op_Inequality : System.Windows.Ink.DrawingAttributes * System.Windows.Ink.DrawingAttributes -> bool
Public Shared Operator != (first As DrawingAttributes, second As DrawingAttributes) As Boolean
Paramètres
- first
- DrawingAttributes
Premier objet DrawingAttributes à comparer.
- second
- DrawingAttributes
Deuxième DrawingAttributes objet à comparer.
Retours
true
si les objets ne sont pas égaux ; sinon, false
.
Exemples
L’exemple suivant compare deux DrawingAttributes objets pour l’inégalité. Étant donné que les Colorpropriétés , et StylusTipWidth Heightles propriétés sont attributes1
attributes2
définies sur les mêmes valeurs, le message « DrawingAttributes sont égaux » s’affiche.
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 != attributes2)
{
MessageBox.Show("The DrawingAttributes are not equal");
}
else
{
MessageBox.Show("The DrawingAttributes are equal");
}
If attributes1 <> attributes2 Then
MessageBox.Show("The DrawingAttributes are not equal")
Else
MessageBox.Show("The DrawingAttributes are equal")
End If
Remarques
Deux DrawingAttributes objets ne sont pas égaux si les propriétés suivantes ne sont pas égales :
Notes
La Inequality méthode ne vérifie pas les propriétés personnalisées pour l’égalité.
La méthode équivalente pour cet opérateur est la négation de DrawingAttributes.Equals.