Rect.Contains Methode
Definition
Wichtig
Einige Informationen beziehen sich auf Vorabversionen, die vor dem Release ggf. grundlegend überarbeitet werden. Microsoft übernimmt hinsichtlich der hier bereitgestellten Informationen keine Gewährleistungen, seien sie ausdrücklich oder konkludent.
Gibt an, ob das Rechteck den angegebenen Punkt oder das Rechteck enthält.
Überlädt
Contains(Point) |
Gibt an, ob das Rechteck den angegebenen Punkt enthält. |
Contains(Rect) |
Gibt an, ob das Rechteck das angegebene Rechteck enthält. |
Contains(Double, Double) |
Gibt an, ob das Rechteck die angegebene x- und y-Koordinate enthält. |
Contains(Point)
Gibt an, ob das Rechteck den angegebenen Punkt enthält.
public:
bool Contains(System::Windows::Point point);
public bool Contains (System.Windows.Point point);
member this.Contains : System.Windows.Point -> bool
Public Function Contains (point As Point) As Boolean
Parameter
- point
- Point
Der zu überprüfende Punkt.
Gibt zurück
true
, wenn das Rechteck den angegebenen Punkt enthält, andernfalls false
.
Beispiele
Im folgenden Beispiel wird gezeigt, wie die Contains(Point) -Methode verwendet wird, um zu bestimmen, ob das Rechteck den angegebenen Pointenthält.
private bool rectContainsExample1()
{
// 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);
// Using the Contains method, see if the rectangle contains the specified
// point. doesContain is true because the point is inside of myRectangle.
bool doesContain = myRectangle.Contains(new Point(13, 30));
return doesContain;
}
Gilt für:
Contains(Rect)
Gibt an, ob das Rechteck das angegebene Rechteck enthält.
public:
bool Contains(System::Windows::Rect rect);
public bool Contains (System.Windows.Rect rect);
member this.Contains : System.Windows.Rect -> bool
Public Function Contains (rect As Rect) As Boolean
Parameter
- rect
- Rect
Das zu überprüfende Rechteck.
Gibt zurück
true
wenn rect
vollständig im Rechteck enthalten ist, andernfalls false
.
Beispiele
Im folgenden Beispiel wird gezeigt, wie die Contains(Rect) -Methode verwendet wird, um zu bestimmen, ob ein Rechteck in einem anderen Rechteck enthalten ist.
private bool rectContainsExample2()
{
// Create a rectangle.
Rect myRectangle1 = new Rect();
// The Location property specifies the coordinates of the upper left-hand
// corner of the rectangle.
myRectangle1.Location = new Point(10, 5);
// Set the Size property of the rectangle with a width of 200
// and a height of 50.
myRectangle1.Size = new Size(200, 50);
// Create second rectangle.
Rect myRectangle2 = new Rect();
myRectangle2.Location = new Point(12, 12);
myRectangle2.Size = new Size(10, 60);
// Using the Contains method, see if the second rectangle is
// contained within the first rectangle. doesContain is false
// because only part of myRectangle2 is contained in myRectangle1
// (myRectangle2 is too wide).
bool doesContain = myRectangle1.Contains(myRectangle2);
return doesContain;
}
Gilt für:
Contains(Double, Double)
Gibt an, ob das Rechteck die angegebene x- und y-Koordinate enthält.
public:
bool Contains(double x, double y);
public bool Contains (double x, double y);
member this.Contains : double * double -> bool
Public Function Contains (x As Double, y As Double) As Boolean
Parameter
- x
- Double
Die x-Koordinate des Punkts, der überprüft werden soll.
- y
- Double
Die y-Koordinate des Punkts, der überprüft werden soll.
Gibt zurück
true
wenn (x
, y
) im Rechteck enthalten ist, andernfalls false
.
Beispiele
Im folgenden Beispiel wird gezeigt, wie die Contains(Double, Double) -Methode verwendet wird, um zu bestimmen, ob das Rechteck den von der angegebenen x-Koordinate und der y-Koordinate angegebenen Punkt enthält.
private bool rectContainsExample3()
{
// 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);
// Using the Contains method, see if the rectangle contains the specified
// point specified by the given X and Y coordinates. doesContain is false
// because the X and Y coordinates specify a point outside of myRectangle.
bool doesContain = myRectangle.Contains(4, 13);
return doesContain;
}