Rectangle.Contains Yöntem

Tanım

Belirtilen noktanın bu Rectangletarafından tanımlanan dikdörtgen bölge içinde yerlenip içerilmediğini belirler.

Aşırı Yüklemeler

Contains(Point)

Belirtilen noktanın bu Rectangle yapı içinde olup olmadığını belirler.

Contains(Rectangle)

ile rect temsil edilen dikdörtgen bölgenin tamamen bu Rectangle yapı içinde yerlenip kapsanmadığını belirler.

Contains(Int32, Int32)

Belirtilen noktanın bu Rectangle yapı içinde olup olmadığını belirler.

Contains(Point)

Kaynak:
Rectangle.cs
Kaynak:
Rectangle.cs
Kaynak:
Rectangle.cs

Belirtilen noktanın bu Rectangle yapı içinde olup olmadığını belirler.

public:
 bool Contains(System::Drawing::Point pt);
public readonly bool Contains (System.Drawing.Point pt);
public bool Contains (System.Drawing.Point pt);
member this.Contains : System.Drawing.Point -> bool
Public Function Contains (pt As Point) As Boolean

Parametreler

pt
Point

Sınanacak Point .

Döndürülenler

Bu yöntem, tarafından pt temsil edilen nokta bu Rectangle yapı içinde yer alırsa döndürürtrue; aksi takdirde false.

Açıklamalar

Bu yöntemin doğru sonuçlar döndürmesi için içeren dikdörtgen normalleştirilmelidir.

Şunlara uygulanır

Contains(Rectangle)

Kaynak:
Rectangle.cs
Kaynak:
Rectangle.cs
Kaynak:
Rectangle.cs

ile rect temsil edilen dikdörtgen bölgenin tamamen bu Rectangle yapı içinde yerlenip kapsanmadığını belirler.

public:
 bool Contains(System::Drawing::Rectangle rect);
public readonly bool Contains (System.Drawing.Rectangle rect);
public bool Contains (System.Drawing.Rectangle rect);
member this.Contains : System.Drawing.Rectangle -> bool
Public Function Contains (rect As Rectangle) As Boolean

Parametreler

rect
Rectangle

Sınanacak Rectangle .

Döndürülenler

Bu yöntem, tarafından rect temsil edilen dikdörtgen bölge tamamen bu Rectangle yapı içinde yer alırsa döndürürtrue; aksi takdirde false.

Örnekler

Aşağıdaki kod örneği, yöntemini ve sınıfını SystemPens gösterirContains. Bu örnek bir Windows Formu ile kullanılmak üzere tasarlanmıştır. Bu kodu, Button1adlı bir düğme içeren bir forma yapıştırın, formun oluşturucusundan veya Load yönteminden çağırın DrawFirstRectangle ve yöntemini düğmenin Click olayıyla ilişkilendirinButton1_Click.

private:
   [UIPermission(SecurityAction::Demand, Window=UIPermissionWindow::AllWindows)]
   void DrawFirstRectangle()
   {
      Rectangle rectangle1 = Rectangle(70,70,100,150);
      ControlPaint::DrawReversibleFrame( rectangle1, SystemColors::Highlight, FrameStyle::Thick );
   }

   void Button1_Click( Object^ /*sender*/, EventArgs^ /*e*/ )
   {
      Rectangle rectangle1 = Rectangle(70,70,100,150);

      // Get the bounds of the screen.
      Rectangle screenRectangle = Screen::PrimaryScreen->Bounds;

      // Check to see if the rectangle is within the bounds of the screen.
      if ( screenRectangle.Contains( rectangle1 ) )
      {
         ControlPaint::DrawReversibleFrame( rectangle1, SystemColors::Highlight, FrameStyle::Thick );

         // Call the Offset method to move the rectangle.
         rectangle1.Offset( 20, 20 );

         // Draw the new, offset rectangle.
         ControlPaint::DrawReversibleFrame( rectangle1, SystemColors::Highlight, FrameStyle::Thick );
      }
   }
Rectangle rectangle1 = new Rectangle(70, 70, 100, 150);

private void DrawFirstRectangle()
{
    ControlPaint.DrawReversibleFrame(rectangle1, 
        SystemColors.Highlight, FrameStyle.Thick);
}

private void Button1_Click(object sender, EventArgs e)
{

    // Get the bounds of the screen.
    Rectangle screenRectangle = Screen.PrimaryScreen.Bounds;

    // Check to see if the rectangle is within the bounds of the screen.
    if (screenRectangle.Contains(rectangle1))

        // If so, erase the previous rectangle.
    {
        ControlPaint.DrawReversibleFrame(rectangle1, 
            SystemColors.Highlight, FrameStyle.Thick);

        // Call the Offset method to move the rectangle.
        rectangle1.Offset(20, 20);

        // Draw the new, offset rectangle.
        ControlPaint.DrawReversibleFrame(rectangle1, 
            SystemColors.Highlight, FrameStyle.Thick);
    }
}
Dim rectangle1 As New Rectangle(70, 70, 100, 150)

Private Sub DrawFirstRectangle()
    ControlPaint.DrawReversibleFrame(rectangle1, _
        SystemColors.Highlight, FrameStyle.Thick)
End Sub

Private Sub Button1_Click(ByVal sender As Object, _
    ByVal e As EventArgs) Handles Button1.Click

    ' Get the bounds of the screen.
    Dim screenRectangle As Rectangle = Screen.PrimaryScreen.Bounds

    ' Check to see if the rectangle is within the bounds of the screen.
    If (screenRectangle.Contains(rectangle1)) Then

        ' If so, erase the previous rectangle.
        ControlPaint.DrawReversibleFrame(rectangle1, _
            SystemColors.Highlight, FrameStyle.Thick)

        ' Call the Offset method to move the rectangle.
        rectangle1.Offset(20, 20)

        ' Draw the new, offset rectangle.
        ControlPaint.DrawReversibleFrame(rectangle1, _
            SystemColors.Highlight, FrameStyle.Thick)
    End If
End Sub

Açıklamalar

Bu yöntemin doğru sonuçlar döndürmesi için içeren dikdörtgen normalleştirilmelidir.

Şunlara uygulanır

Contains(Int32, Int32)

Kaynak:
Rectangle.cs
Kaynak:
Rectangle.cs
Kaynak:
Rectangle.cs

Belirtilen noktanın bu Rectangle yapı içinde olup olmadığını belirler.

public:
 bool Contains(int x, int y);
public readonly bool Contains (int x, int y);
public bool Contains (int x, int y);
member this.Contains : int * int -> bool
Public Function Contains (x As Integer, y As Integer) As Boolean

Parametreler

x
Int32

Sınanacak noktanın x koordinatı.

y
Int32

Sınanacak noktanın y koordinatı.

Döndürülenler

Bu yöntem, tarafından xy tanımlanan ve noktası bu Rectangle yapı içinde yer alırsa döndürürtrue; aksi takdirde false.

Açıklamalar

Bu yöntemin doğru sonuçlar döndürmesi için içeren dikdörtgen normalleştirilmelidir.

Şunlara uygulanır