Determines if the specified point is contained within the rectangular region
defined by this Rectangle.
Namespace:
pdftron.PDF
Assembly:
pdftron (in pdftron.dll) Version: 255.255.255.255
Syntax public bool Contains(
double x,
double y
)
Public Function Contains (
x As Double,
y As Double
) As Boolean
public:
virtual bool Contains(
[InAttribute] double x,
[InAttribute] double y
) sealed
Parameters
- x
- Type: SystemDouble
The x coordinate of the specified point.
- y
- Type: SystemDouble
The y coordinate of the specified point.
Return Value
Type:
Boolean
True if the point is in the rectangle, false otherwise.
See Also