org.pdfbox.pdmodel.interactive.action
Class PDPageAdditionalActions
java.lang.Object
org.pdfbox.pdmodel.interactive.action.PDPageAdditionalActions
- COSObjectable
public class PDPageAdditionalActions
extends java.lang.Object
This class represents a page object's dictionary of actions
that occur due to events.
PDAction | getC() - This will get an action to be performed when the page
is closed.
|
COSDictionary | getCOSDictionary() - Convert this standard java object to a COS object.
|
COSBase | getCOSObject() - Convert this standard java object to a COS object.
|
PDAction | getO() - This will get an action to be performed when the page
is opened.
|
void | setC(PDAction c) - This will set an action to be performed when the page
is closed.
|
void | setO(PDAction o) - This will set an action to be performed when the page
is opened.
|
PDPageAdditionalActions
public PDPageAdditionalActions()
Default constructor.
PDPageAdditionalActions
public PDPageAdditionalActions(COSDictionary a)
Constructor.
a
- The action dictionary.
getC
public PDAction getC()
This will get an action to be performed when the page
is closed. This action applies to the page being closed,
and is executed before any other page opened.
- The C entry of page object's additional actions dictionary.
getCOSDictionary
public COSDictionary getCOSDictionary()
Convert this standard java object to a COS object.
- The cos object that matches this Java object.
getCOSObject
public COSBase getCOSObject()
Convert this standard java object to a COS object.
- getCOSObject in interface COSObjectable
- The cos object that matches this Java object.
getO
public PDAction getO()
This will get an action to be performed when the page
is opened. This action is independent of any that may be
defined by the OpenAction entry in the document catalog,
and is executed after such an action.
- The O entry of page object's additional actions dictionary.
setC
public void setC(PDAction c)
This will set an action to be performed when the page
is closed. This action applies to the page being closed,
and is executed before any other page opened.
c
- The action to be performed.
setO
public void setO(PDAction o)
This will set an action to be performed when the page
is opened. This action is independent of any that may be
defined by the OpenAction entry in the document catalog,
and is executed after such an action.
o
- The action to be performed.