Determines if the specified point is contained within this
PdfRectangle structure.
Namespace:
BitMiracle.Docotic.Pdf
Assembly:
BitMiracle.Docotic.Pdf (in BitMiracle.Docotic.Pdf.dll)
Syntax
C#
public bool Contains(
double x,
double y
)
VB
Public Function Contains (
x As Double,
y As Double
) As Boolean
Parameters
- x
- Type: System.Double
The x-coordinate of the point to test. - y
- Type: System.Double
The y-coordinate of the point to test.
Return Value
Type:
Boolean
This method returns
true if the point defined by
x
and
y is contained within this
PdfRectangle
structure; otherwise
false.
See Also