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 | The 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 Aspose.Imaging
- assembly Aspose.Imaging
Contains(PointF)
Determines if the specified point is contained within this RectangleF
structure.
public bool Contains(PointF point)
Parameter | Type | Description |
---|---|---|
point | PointF | The PointF to test. |
Return Value
This method returns true if the point represented by the point parameter is contained within this RectangleF
structure; otherwise false.
See Also
- struct PointF
- struct RectangleF
- namespace Aspose.Imaging
- assembly Aspose.Imaging
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 Aspose.Imaging
- assembly Aspose.Imaging