StylusPoint.Inequality(StylusPoint, StylusPoint) Operatör
Tanım
Önemli
Bazı bilgiler ürünün ön sürümüyle ilgilidir ve sürüm öncesinde önemli değişiklikler yapılmış olabilir. Burada verilen bilgilerle ilgili olarak Microsoft açık veya zımni hiçbir garanti vermez.
Belirtilen StylusPoint nesnelerin eşit olmadığını gösteren bir Boole değeri döndürür.
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
Parametreler
- stylusPoint1
- StylusPoint
Karşılaştıracak ilk StylusPoint .
- stylusPoint2
- StylusPoint
Karşılaştıracak ikinci StylusPoint .
Döndürülenler
true
belirtilen StylusPoint nesneler eşit değilse, değilse , false
.
Örnekler
Aşağıdaki örnekte, iki StylusPoint nesnenin eşitsizlik açısından nasıl denetlenecekleri gösterilmektedir. ve üzerindeki Xpoint1
point2
, Yve PressureFactor özellikleri aynı değere ayarlandığından, "İki StylusPoint nesnesi eşittir." İleti görüntülenir.
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
Açıklamalar
Bu işleç için eşdeğer yöntem, Equals