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
trueif the point defined byxandyis 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
trueif the point defined byxandyis 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
trueif the point represented by theptparameter 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
rectPdfRectangleThe PdfRectangle to test.
Returns
- bool
This method returns
trueif the rectangular region represented byrectis entirely contained within the rectangular region represented by this PdfRectangle; otherwisefalse.