DrawingAttributes.Inequality(DrawingAttributes, DrawingAttributes) Operátor
Definice
Důležité
Některé informace platí pro předběžně vydaný produkt, který se může zásadně změnit, než ho výrobce nebo autor vydá. Microsoft neposkytuje žádné záruky, výslovné ani předpokládané, týkající se zde uváděných informací.
Určuje, zda zadané DrawingAttributes objekty nejsou stejné.
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
První DrawingAttributes objekt k porovnání.
- second
- DrawingAttributes
Druhý DrawingAttributes objekt k porovnání.
Návraty
true
pokud objekty nejsou stejné; v opačném případě . false
Příklady
Následující příklad porovnává dva DrawingAttributes objekty nerovnosti.
ColorVzhledem k tomu, že vlastnosti , StylusTip, Heighta Width u attributes1
a attributes2
jsou nastaveny na stejné hodnoty, zobrazí se zpráva "The DrawingAttributes jsou si rovny".
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
Poznámky
Dva DrawingAttributes objekty nejsou stejné, pokud následující vlastnosti nejsou rovny:
Poznámka
Metoda Inequality nekontroluje rovnost ve vlastních vlastnostech.
Ekvivalentní metodou pro tento operátor je negace .DrawingAttributes.Equals