StylusPoint.Inequality(StylusPoint, StylusPoint) 연산자
정의
중요
일부 정보는 릴리스되기 전에 상당 부분 수정될 수 있는 시험판 제품과 관련이 있습니다. Microsoft는 여기에 제공된 정보에 대해 어떠한 명시적이거나 묵시적인 보증도 하지 않습니다.
지정된 StylusPoint 개체가 다른지 여부를 나타내는 부울 값을 반환합니다.
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
매개 변수
- stylusPoint1
- StylusPoint
비교할 첫 번째 StylusPoint입니다.
- stylusPoint2
- StylusPoint
비교할 두 번째 StylusPoint입니다.
반환
지정된 StylusPoint 개체가 다르면 true
이고, 그렇지 않으면 false
입니다.
예제
다음 예제에서는 두 개를 선택 하는 방법에 설명 StylusPoint 개체가 다른 지 합니다. 및 point2
의 X, Y및 PressureFactor 속성 point1
이 동일한 값으로 설정되기 때문에 "두 StylusPoint 개체는 동일합니다." 메시지가 나타납니다.
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
설명
이 연산자에 대해 해당 하는 방법은의 부정 Equals
적용 대상
GitHub에서 Microsoft와 공동 작업
이 콘텐츠의 원본은 GitHub에서 찾을 수 있으며, 여기서 문제와 끌어오기 요청을 만들고 검토할 수도 있습니다. 자세한 내용은 참여자 가이드를 참조하세요.
.NET