Rect.Intersect Yöntem
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.
İki dikdörtgenin kesişimini bulur.
Aşırı Yüklemeler
Intersect(Rect) |
Geçerli dikdörtgenle belirtilen dikdörtgenin kesişimini bulur ve sonucu geçerli dikdörtgen olarak depolar. |
Intersect(Rect, Rect) |
Belirtilen dikdörtgenlerin kesişimini döndürür. |
Intersect(Rect)
Geçerli dikdörtgenle belirtilen dikdörtgenin kesişimini bulur ve sonucu geçerli dikdörtgen olarak depolar.
public:
void Intersect(System::Windows::Rect rect);
public void Intersect (System.Windows.Rect rect);
member this.Intersect : System.Windows.Rect -> unit
Public Sub Intersect (rect As Rect)
Parametreler
- rect
- Rect
Geçerli dikdörtgenle kesişecek dikdörtgen.
Örnekler
Aşağıdaki örnekte, iki dikdörtgenin Intersect(Rect) kesişimini bulmak ve sonucu dikdörtgen olarak depolamak için yönteminin nasıl kullanılacağı gösterilmektedir.
private Rect intersectExample1()
{
// 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);
// Intersect method finds the intersection between the current rectangle and the
// specified rectangle, and stores the result as the current rectangle. If no
// intersection exists, the current rectangle becomes the Empty rectangle.
// myRectangle now has a size of 190,45 and location of 10,5.
myRectangle.Intersect(myRectangle2);
// myRectangle has been changed into the intersection area between the old myRectangle
// and myRectangle2 (new size of 190,45 and new location of 10,5).
return myRectangle;
}
Açıklamalar
Kesişim yoksa, geçerli dikdörtgen olur Rect.Empty.
Ayrıca bkz.
Şunlara uygulanır
Intersect(Rect, Rect)
Belirtilen dikdörtgenlerin kesişimini döndürür.
public:
static System::Windows::Rect Intersect(System::Windows::Rect rect1, System::Windows::Rect rect2);
public static System.Windows.Rect Intersect (System.Windows.Rect rect1, System.Windows.Rect rect2);
static member Intersect : System.Windows.Rect * System.Windows.Rect -> System.Windows.Rect
Public Shared Function Intersect (rect1 As Rect, rect2 As Rect) As Rect
Parametreler
- rect1
- Rect
Karşılaştıracak ilk dikdörtgen.
- rect2
- Rect
Karşılaştıracak ikinci dikdörtgen.
Döndürülenler
İki dikdörtgenin kesişimi veya Empty kesişim yoksa.
Açıklamalar
Aşağıdaki örnek, iki dikdörtgenin Intersect(Rect, Rect) kesişimini bulmak için yönteminin nasıl kullanılacağını gösterir.
private Rect intersectExample2()
{
// 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);
// Intersect method finds the intersection between the specified rectangles and
// returns the result as a Rect. If there is no intersection then the Empty Rect
// is returned. resultRectangle has a size of 190,45 and location of 10,5.
Rect resultRectangle = Rect.Intersect(myRectangle, myRectangle2);
return resultRectangle;
}