org.apache.pdfbox.pdmodel.interactive.action.type
public class: PDActionGoTo [javadoc |
source]
java.lang.Object
org.apache.pdfbox.pdmodel.interactive.action.type.PDAction
org.apache.pdfbox.pdmodel.interactive.action.type.PDActionGoTo
All Implemented Interfaces:
PDDestinationOrAction
This represents a go-to action that can be executed in a PDF document.
Field Summary |
---|
public static final String | SUB_TYPE | This type of action this object represents. |
Methods from java.lang.Object: |
---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
Method from org.apache.pdfbox.pdmodel.interactive.action.type.PDActionGoTo Detail: |
public PDDestination getDestination() throws IOException {
return PDDestination.create( getCOSDictionary().getDictionaryObject( "D" ) );
}
This will get the destination to jump to. |
public void setDestination(PDDestination d) {
getCOSDictionary().setItem( "D", d );
}
This will set the destination to jump to. |