org.apache.pdfbox.pdmodel.interactive.action
public class: PDAdditionalActions [javadoc |
source]
java.lang.Object
org.apache.pdfbox.pdmodel.interactive.action.PDAdditionalActions
All Implemented Interfaces:
COSObjectable
This represents a dictionary of actions that occur due to events.
Methods from java.lang.Object: |
---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
Method from org.apache.pdfbox.pdmodel.interactive.action.PDAdditionalActions Detail: |
public COSDictionary getCOSDictionary() {
return actions;
}
Convert this standard java object to a COS object. |
public COSBase getCOSObject() {
return actions;
}
Convert this standard java object to a COS object. |
public PDAction getF() {
return PDActionFactory.createAction( (COSDictionary)actions.getDictionaryObject("F" ) );
}
|
public void setF(PDAction action) {
actions.setItem( "F", action );
}
|