RectangleF.Contains
Contents
[
Hide
]Contains(float, float)
Determines if the specified point is contained within this RectangleF structure.
public bool Contains(float x, float y)
Parameter | Type | Description |
---|---|---|
x | Single | he x-coordinate of the point to test. |
y | Single | The y-coordinate of the point to test. |
Return Value
This method returns true
if the point defined by x and y is contained within this RectangleF structure; otherwise false
.
See Also
- struct RectangleF
- namespace System.Drawing
- assembly Aspose.Drawing
Contains(PointF)
Determines if the specified point is contained within this RectangleF structure.
public bool Contains(PointF pt)
Parameter | Type | Description |
---|---|---|
pt | PointF | The PointF to test. |
Return Value
This method returns true
if the point represented by the pt parameter is contained within this RectangleF structure; otherwise false
.
See Also
- struct PointF
- struct RectangleF
- namespace System.Drawing
- assembly Aspose.Drawing
Contains(RectangleF)
Determines if the rectangular region represented by rect is entirely contained within this RectangleF structure.
public bool Contains(RectangleF rect)
Parameter | Type | Description |
---|---|---|
rect | RectangleF | The RectangleF to test. |
Return Value
This method returns true
if the rectangular region represented by rect is entirely contained within the rectangular region represented by this RectangleF; otherwise false
.
See Also
- struct RectangleF
- namespace System.Drawing
- assembly Aspose.Drawing