Point.Equality(Point, Point) 연산자

정의

두 개의 Point 개체를 비교합니다. 결과는 두 X 개체의 YPoint 속성 값이 같은지 여부를 지정합니다.

public:
 static bool operator ==(System::Drawing::Point left, System::Drawing::Point right);
public static bool operator == (System.Drawing.Point left, System.Drawing.Point right);
static member ( = ) : System.Drawing.Point * System.Drawing.Point -> bool
Public Shared Operator == (left As Point, right As Point) As Boolean

매개 변수

left
Point

비교할 Point입니다.

right
Point

비교할 Point입니다.

반환

leftrightXY 값이 같으면 true이고, 그렇지 않으면 false입니다.

예제

다음 코드 예제에서는 연산자를 사용 Equality 하는 방법 및 또는 두 정수에서 를 PointSize 생성 하는 방법을 보여 줍니다. 또한 및 Y 속성을 사용하는 X 방법을 보여 줍니다. 이 예제는 Windows Forms 사용하도록 설계되었습니다. 라는 단추 Button1가 포함된 양식에 코드를 붙여넣고 메서드를 Button1_Click 단추의 Click 이벤트와 연결합니다.

private:
   void Button1_Click( System::Object^ /*sender*/, System::EventArgs^ /*e*/ )
   {
      // Construct a new Point with integers.
      Point Point1 = Point(100,100);

      // Create a Graphics object.
      Graphics^ formGraphics = this->CreateGraphics();

      // Construct another Point, this time using a Size.
      Point Point2 = Point(System::Drawing::Size( 100, 100 ));

      // Call the equality operator to see if the points are equal,  
      // and if so print out their x and y values.
      if ( Point1 == Point2 )
      {
         array<Object^>^temp0 = {Point1.X,Point2.X,Point1.Y,Point2.Y};
         formGraphics->DrawString( String::Format( "Point1.X: "
         "{0},Point2.X: {1}, Point1.Y: {2}, Point2.Y {3}", temp0 ), this->Font, Brushes::Black, PointF(10,70) );
      }
   }
private void Button1_Click(System.Object sender, System.EventArgs e)
{

    // Construct a new Point with integers.
    Point Point1 = new Point(100, 100);

    // Create a Graphics object.
    Graphics formGraphics = this.CreateGraphics();

    // Construct another Point, this time using a Size.
    Point Point2 = new Point(new Size(100, 100));

    // Call the equality operator to see if the points are equal,  
    // and if so print out their x and y values.
    if (Point1 == Point2)
    {
        formGraphics.DrawString(String.Format("Point1.X: " +
            "{0},Point2.X: {1}, Point1.Y: {2}, Point2.Y {3}",
            new object[]{Point1.X, Point2.X, Point1.Y, Point2.Y}),
            this.Font, Brushes.Black, new PointF(10, 70));
    }
}
Private Sub Button1_Click(ByVal sender As System.Object, _
    ByVal e As System.EventArgs) Handles Button1.Click

    ' Construct a new Point with integers.
    Dim Point1 As New Point(100, 100)

    ' Create a Graphics object.
    Dim formGraphics As Graphics = Me.CreateGraphics()

    ' Construct another Point, this time using a Size.
    Dim Point2 As New Point(New Size(100, 100))

    ' Call the equality operator to see if the points are equal,  
    ' and if so print out their x and y values.
    If (Point.op_Equality(Point1, Point2)) Then
        formGraphics.DrawString(String.Format("Point1.X: " & _
            "{0},Point2.X: {1}, Point1.Y: {2}, Point2.Y {3}", _
            New Object() {Point1.X, Point2.X, Point1.Y, Point2.Y}), _
            Me.Font, Brushes.Black, New PointF(10, 70))
    End If

End Sub

적용 대상