Method from org.apache.pdfbox.pdmodel.interactive.documentnavigation.destination.PDPageXYZDestination Detail: |
public int getLeft() {
return array.getInt( 2 );
}
Get the left x coordinate. A return value of -1 implies that the current x-coordinate
will be used. |
public int getTop() {
return array.getInt( 3 );
}
Get the top y coordinate. A return value of -1 implies that the current y-coordinate
will be used. |
public int getZoom() {
return array.getInt( 4 );
}
Get the zoom value. A return value of -1 implies that the current zoom
will be used. |
public void setLeft(int x) {
array.growToSize( 3 );
if( x == -1 )
{
array.set( 2, (COSBase)null );
}
else
{
array.setInt( 2, x );
}
}
Set the left x-coordinate, a value of -1 implies that the current x-coordinate
will be used. |
public void setTop(int y) {
array.growToSize( 4 );
if( y == -1 )
{
array.set( 3, (COSBase)null );
}
else
{
array.setInt( 3, y );
}
}
Set the top y-coordinate, a value of -1 implies that the current y-coordinate
will be used. |
public void setZoom(int zoom) {
array.growToSize( 5 );
if( zoom == -1 )
{
array.set( 4, (COSBase)null );
}
else
{
array.setInt( 4, zoom );
}
}
Set the zoom value for the page, a value of -1 implies that the current zoom
will be used. |