Method Contains
- Namespace
- BitMiracle.Docotic.Pdf
- Assembly
- BitMiracle.Docotic.Pdf.dll
Contains(float, float)
Determines if the specified point is contained within this PdfRectangle structure.
public readonly bool Contains(float x, float y)
Parameters
Returns
- bool
This method returns
true
if the point defined byx
andy
is contained within this PdfRectangle structure; otherwisefalse
.
Contains(double, double)
Determines if the specified point is contained within this PdfRectangle structure.
public readonly bool Contains(double x, double y)
Parameters
Returns
- bool
This method returns
true
if the point defined byx
andy
is contained within this PdfRectangle structure; otherwisefalse
.
Contains(PdfPoint)
Determines if the specified point is contained within this PdfRectangle structure.
public readonly bool Contains(PdfPoint pt)
Parameters
Returns
- bool
This method returns
true
if the point represented by thept
parameter is contained within this PdfRectangle structure; otherwisefalse
.
Contains(PdfRectangle)
Determines if the rectangular region represented by rect
is entirely contained within this PdfRectangle structure.
public readonly bool Contains(PdfRectangle rect)
Parameters
rect
PdfRectangleThe PdfRectangle to test.
Returns
- bool
This method returns
true
if the rectangular region represented byrect
is entirely contained within the rectangular region represented by this PdfRectangle; otherwisefalse
.