Home » pdfbox-1.1.0-src » org.apache.pdfbox.pdmodel.interactive.documentnavigation.destination » [javadoc | source]
org.apache.pdfbox.pdmodel.interactive.documentnavigation.destination
public class: PDPageFitRectangleDestination [javadoc | source]
java.lang.Object
   org.apache.pdfbox.pdmodel.interactive.documentnavigation.destination.PDDestination
      org.apache.pdfbox.pdmodel.interactive.documentnavigation.destination.PDPageDestination
         org.apache.pdfbox.pdmodel.interactive.documentnavigation.destination.PDPageFitRectangleDestination

All Implemented Interfaces:
    PDDestinationOrAction

This represents a destination to a page at a y location and the width is magnified to just fit on the screen.
Field Summary
protected static final  String TYPE    The type of this destination. 
Fields inherited from org.apache.pdfbox.pdmodel.interactive.documentnavigation.destination.PDPageDestination:
array
Constructor:
 public PDPageFitRectangleDestination() 
 public PDPageFitRectangleDestination(COSArray arr) 
    Constructor from an existing destination array.
    Parameters:
    arr - The destination array.
Method from org.apache.pdfbox.pdmodel.interactive.documentnavigation.destination.PDPageFitRectangleDestination Summary:
getBottom,   getLeft,   getRight,   getTop,   setBottom,   setLeft,   setRight,   setTop
Methods from org.apache.pdfbox.pdmodel.interactive.documentnavigation.destination.PDPageDestination:
findPageNumber,   getCOSArray,   getCOSObject,   getPage,   getPageNumber,   setPage,   setPageNumber
Methods from org.apache.pdfbox.pdmodel.interactive.documentnavigation.destination.PDDestination:
create,   toString
Methods from java.lang.Object:
clone,   equals,   finalize,   getClass,   hashCode,   notify,   notifyAll,   toString,   wait,   wait,   wait
Method from org.apache.pdfbox.pdmodel.interactive.documentnavigation.destination.PDPageFitRectangleDestination Detail:
 public int getBottom() 
    Get the bottom y coordinate. A return value of -1 implies that the current y-coordinate will be used.
 public int getLeft() 
    Get the left x coordinate. A return value of -1 implies that the current x-coordinate will be used.
 public int getRight() 
    Get the right x coordinate. A return value of -1 implies that the current x-coordinate will be used.
 public int getTop() 
    Get the top y coordinate. A return value of -1 implies that the current y-coordinate will be used.
 public  void setBottom(int y) 
    Set the bottom y-coordinate, a value of -1 implies that the current y-coordinate will be used.
 public  void setLeft(int x) 
    Set the left x-coordinate, a value of -1 implies that the current x-coordinate will be used.
 public  void setRight(int x) 
    Set the right x-coordinate, a value of -1 implies that the current x-coordinate will be used.
 public  void setTop(int y) 
    Set the top y-coordinate, a value of -1 implies that the current y-coordinate will be used.