This class represents a page object's dictionary of actions
that occur due to events.
Method from org.apache.pdfbox.pdmodel.interactive.action.PDPageAdditionalActions Detail: |
public PDAction getC() {
COSDictionary c = (COSDictionary)actions.getDictionaryObject( "C" );
PDAction retval = null;
if( c != null )
{
retval = PDActionFactory.createAction( c );
}
return retval;
}
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. |
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 getO() {
COSDictionary o = (COSDictionary)actions.getDictionaryObject( "O" );
PDAction retval = null;
if( o != null )
{
retval = PDActionFactory.createAction( o );
}
return retval;
}
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. |
public void setC(PDAction c) {
actions.setItem( "C", 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. |
public void setO(PDAction o) {
actions.setItem( "O", 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. |