Udostępnij za pośrednictwem


DrawingAttributes.Inequality(DrawingAttributes, DrawingAttributes) Operator

Definicja

Określa, czy określone DrawingAttributes obiekty nie są równe.

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

Parametry

first
DrawingAttributes

Pierwszy DrawingAttributes obiekt do porównania.

second
DrawingAttributes

Drugi DrawingAttributes obiekt do porównania.

Zwraca

Boolean

true jeśli obiekty nie są równe; w przeciwnym razie , false.

Przykłady

Poniższy przykład porównuje dwa DrawingAttributes obiekty pod kątem nierówności. ColorPonieważ właściwości attributes1 attributes2 , , HeightStylusTipi Width są ustawione na te same wartości, zostanie wyświetlony komunikat "RysunekAttributes są równe".

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

Uwagi

Dwa DrawingAttributes obiekty nie są równe, jeśli następujące właściwości nie są równe:

Uwaga

Metoda Inequality nie sprawdza właściwości niestandardowych pod kątem równości.

Równoważną metodą dla tego operatora jest negacja DrawingAttributes.Equals.

Dotyczy