Uses of Class
org.pdfbox.pdmodel.common.PDRectangle

Packages that use PDRectangle
org.pdfbox.pdmodel The PDModel package represents a high level API for creating and manipulating PDF documents. 
org.pdfbox.pdmodel.common High level PD classes that are used throughout several packages are placed in the PDModel common package. 
org.pdfbox.pdmodel.font Classes to deal with font functionality in a PDF Document. 
org.pdfbox.pdmodel.interactive.annotation The annotation package contains classes that work with PDF annotation elements. 
org.pdfbox.pdmodel.interactive.pagenavigation A package to allow provide access to PDF page navigation functionality. 
 

Uses of PDRectangle in org.pdfbox.pdmodel
 

Fields in org.pdfbox.pdmodel declared as PDRectangle
static PDRectangle PDPage.PAGE_SIZE_LETTER
          A page size of LETTER or 8.5x11.
 

Methods in org.pdfbox.pdmodel that return PDRectangle
 PDRectangle PDPageNode.getMediaBox()
          This will get the MediaBox at this page and not look up the hierarchy.
 PDRectangle PDPageNode.findMediaBox()
          This will find the MediaBox for this page by looking up the hierarchy until it finds them.
 PDRectangle PDPageNode.getCropBox()
          This will get the CropBox at this page and not look up the hierarchy.
 PDRectangle PDPageNode.findCropBox()
          This will find the CropBox for this page by looking up the hierarchy until it finds them.
 PDRectangle PDPage.getMediaBox()
          A rectangle, expressed in default user space units, defining the boundaries of the physical medium on which the page is intended to be displayed or printed This will get the MediaBox at this page and not look up the hierarchy.
 PDRectangle PDPage.findMediaBox()
          This will find the MediaBox for this page by looking up the hierarchy until it finds them.
 PDRectangle PDPage.getCropBox()
          A rectangle, expressed in default user space units, defining the visible region of default user space.
 PDRectangle PDPage.findCropBox()
          This will find the CropBox for this page by looking up the hierarchy until it finds them.
 PDRectangle PDPage.getBleedBox()
          A rectangle, expressed in default user space units, defining the region to which the contents of the page should be clipped when output in a production environment.
 PDRectangle PDPage.getTrimBox()
          A rectangle, expressed in default user space units, defining the intended dimensions of the finished page after trimming.
 PDRectangle PDPage.getArtBox()
          A rectangle, expressed in default user space units, defining the extent of the page's meaningful content (including potential white space) as intended by the page's creator The default isthe CropBox.
 

Methods in org.pdfbox.pdmodel with parameters of type PDRectangle
 void PDPageNode.setMediaBox(PDRectangle mediaBox)
          This will set the mediaBox for this page.
 void PDPageNode.setCropBox(PDRectangle cropBox)
          This will set the CropBox for this page.
 void PDPage.setMediaBox(PDRectangle mediaBox)
          This will set the mediaBox for this page.
 void PDPage.setCropBox(PDRectangle cropBox)
          This will set the CropBox for this page.
 void PDPage.setBleedBox(PDRectangle bleedBox)
          This will set the BleedBox for this page.
 void PDPage.setTrimBox(PDRectangle trimBox)
          This will set the TrimBox for this page.
 void PDPage.setArtBox(PDRectangle artBox)
          This will set the ArtBox for this page.
 

Uses of PDRectangle in org.pdfbox.pdmodel.common
 

Methods in org.pdfbox.pdmodel.common that return PDRectangle
 PDRectangle PDRectangle.createRetranslatedRectangle()
          This will create a translated rectangle based off of this rectangle, such that the new rectangle retains the same dimensions(height/width), but the lower left x,y values are zero.
 

Uses of PDRectangle in org.pdfbox.pdmodel.font
 

Methods in org.pdfbox.pdmodel.font that return PDRectangle
 PDRectangle PDType0Font.getFontBoundingBox()
          This will get the fonts bouding box.
 PDRectangle PDSimpleFont.getFontBoundingBox()
          This will get the fonts bounding box.
 PDRectangle PDFontDescriptorDictionary.getFontBoundingBox()
          This will get the fonts bouding box.
 PDRectangle PDFontDescriptorAFM.getFontBoundingBox()
          This will get the fonts bouding box.
abstract  PDRectangle PDFontDescriptor.getFontBoundingBox()
          This will get the fonts bouding box.
abstract  PDRectangle PDFont.getFontBoundingBox()
          This will get the fonts bouding box.
 PDRectangle PDCIDFont.getFontBoundingBox()
          This will get the fonts bouding box.
 

Methods in org.pdfbox.pdmodel.font with parameters of type PDRectangle
 void PDFontDescriptorDictionary.setFontBoundingBox(PDRectangle rect)
          Set the fonts bounding box.
 void PDFontDescriptorAFM.setFontBoundingBox(PDRectangle rect)
          Set the fonts bounding box.
abstract  void PDFontDescriptor.setFontBoundingBox(PDRectangle rect)
          Set the fonts bounding box.
 

Uses of PDRectangle in org.pdfbox.pdmodel.interactive.annotation
 

Methods in org.pdfbox.pdmodel.interactive.annotation that return PDRectangle
 PDRectangle PDAppearanceStream.getBoundingBox()
          Get the bounding box for this appearance.
 PDRectangle PDAnnotationSquareCircle.getRectDifference()
          This will get the rectangle difference rectangle.
 PDRectangle PDAnnotation.getRectangle()
          The annotation rectangle, defining the location of the annotation on the page in default user space units.
 

Methods in org.pdfbox.pdmodel.interactive.annotation with parameters of type PDRectangle
 void PDAppearanceStream.setBoundingBox(PDRectangle rectangle)
          This will set the bounding box for this appearance stream.
 void PDAnnotationSquareCircle.setRectDifference(PDRectangle rd)
          This will set the rectangle difference rectangle.
 void PDAnnotation.setRectangle(PDRectangle rectangle)
          This will set the rectangle for this annotation.
 

Uses of PDRectangle in org.pdfbox.pdmodel.interactive.pagenavigation
 

Methods in org.pdfbox.pdmodel.interactive.pagenavigation that return PDRectangle
 PDRectangle PDThreadBead.getRectangle()
          The rectangle on the page that this bead is part of.
 

Methods in org.pdfbox.pdmodel.interactive.pagenavigation with parameters of type PDRectangle
 void PDThreadBead.setRectangle(PDRectangle rect)
          Set the rectangle on the page that this bead covers.