Rect.IntersectsWith(Rect) 메서드

정의

지정된 사각형이 현재 사각형과 겹치는지 여부를 나타냅니다.

public:
 bool IntersectsWith(System::Windows::Rect rect);
public bool IntersectsWith (System.Windows.Rect rect);
member this.IntersectsWith : System.Windows.Rect -> bool
Public Function IntersectsWith (rect As Rect) As Boolean

매개 변수

rect
Rect

확인할 사각형입니다.

반환

지정된 사각형이 현재 사각형과 겹치면 true이고, 그렇지 않으면 false입니다.

예제

다음 예제에서는 사용 하는 방법의 IntersectsWith 두 개의 사각형의 교차 하는지 확인 하는 방법입니다.

private bool intersectsWithExample()
{
    // Initialize new rectangle.
    Rect myRectangle = new Rect();

    // The Location property specifies the coordinates of the upper left-hand 
    // corner of the rectangle. 
    myRectangle.Location = new Point(10, 5);

    // Set the Size property of the rectangle with a width of 200
    // and a height of 50.
    myRectangle.Size = new Size(200, 50);

    // Create second rectangle to compare to the first.
    Rect myRectangle2 = new Rect();
    myRectangle2.Location = new Point(0, 0);
    myRectangle2.Size = new Size(200, 50);

    // IntersectsWith method indicates whether the specified rectangle intersects 
    // with this rectangle. doesIntersect returns true because the two rectangles
    // intersect. 
    bool doesIntersect = myRectangle.IntersectsWith(myRectangle2);

    // Returns true.
    return doesIntersect;
}

적용 대상