Rectangle.Contains Méthode
Définition
Important
Certaines informations portent sur la préversion du produit qui est susceptible d’être en grande partie modifiée avant sa publication. Microsoft exclut toute garantie, expresse ou implicite, concernant les informations fournies ici.
Détermine si le point spécifié est contenu dans la région rectangulaire définie par ce Rectangle.
Surcharges
Contains(Point) |
Détermine si le point spécifié est contenu dans cette structure Rectangle. |
Contains(Rectangle) |
Détermine si la zone rectangulaire représentée par |
Contains(Int32, Int32) |
Détermine si le point spécifié est contenu dans cette structure Rectangle. |
Contains(Point)
- Source:
- Rectangle.cs
- Source:
- Rectangle.cs
- Source:
- Rectangle.cs
Détermine si le point spécifié est contenu dans cette structure Rectangle.
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
Paramètres
Retours
Cette méthode retourne true
si le point représenté par pt
est contenu dans cette structure Rectangle ; sinon, false
.
Remarques
Le rectangle contenant doit être normalisé pour que cette méthode retourne des résultats précis.
S’applique à
Contains(Rectangle)
- Source:
- Rectangle.cs
- Source:
- Rectangle.cs
- Source:
- Rectangle.cs
Détermine si la zone rectangulaire représentée par rect
est entièrement contenue dans cette structure Rectangle.
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
Paramètres
Retours
Cette méthode retourne true
si la région rectangulaire représentée par rect
est entièrement contenue dans cette structure Rectangle ; sinon, false
.
Exemples
L’exemple de code suivant illustre la Contains méthode et la SystemPens classe . Cet exemple est conçu pour être utilisé avec un Windows Form. Collez ce code dans un formulaire qui contient un bouton nommé Button1
, appelez DrawFirstRectangle
à partir du constructeur ou Load de la méthode du formulaire, puis associez la Button1_Click
méthode à l’événement du Click bouton.
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
Remarques
Le rectangle contenant doit être normalisé pour que cette méthode retourne des résultats précis.
S’applique à
Contains(Int32, Int32)
- Source:
- Rectangle.cs
- Source:
- Rectangle.cs
- Source:
- Rectangle.cs
Détermine si le point spécifié est contenu dans cette structure Rectangle.
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
Paramètres
- x
- Int32
Coordonnée x du point à tester.
- y
- Int32
Coordonnée y du point à tester.
Retours
Cette méthode retourne true
si le point défini par x
et y
est contenu dans cette structure Rectangle ; sinon, false
.
Remarques
Le rectangle contenant doit être normalisé pour que cette méthode retourne des résultats précis.