DrawingAttributes.Inequality(DrawingAttributes, DrawingAttributes) 연산자
정의
중요
일부 정보는 릴리스되기 전에 상당 부분 수정될 수 있는 시험판 제품과 관련이 있습니다. Microsoft는 여기에 제공된 정보에 대해 어떠한 명시적이거나 묵시적인 보증도 하지 않습니다.
지정한 두 DrawingAttributes 개체가 동일하지 않은지 여부를 확인합니다.
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
매개 변수
- first
- DrawingAttributes
비교할 첫 번째 DrawingAttributes 개체입니다.
- second
- DrawingAttributes
비교할 두 번째 DrawingAttributes 개체입니다.
반환
개체가 동일하지 않으면 true
이고, 그렇지 않으면 false
입니다.
예제
다음 예제에서는 두 개의 비교 DrawingAttributes 개체가 다른 지 합니다. 때문에 합니다 Color, StylusTip를 Height, 및 Width 속성을 attributes1
및 attributes2
"DrawingAttributes are equal" 메시지가 표시 되는 동일한 값으로 설정 됩니다.
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
설명
두 DrawingAttributes 는 같지 않은 경우에 두 개체가 다릅니다.
참고
Inequality 메서드 같음에 대 한 사용자 지정 속성을 확인 하지 않습니다.
이 연산자에 대해 해당 하는 방법은의 부정을 나타내는 DrawingAttributes.Equals합니다.