Package com.aowagie.text.pdf.interfaces
Interface PdfDocumentActions
-
- All Known Implementing Classes:
FdfWriter.Wrt
,PdfCopy
,PdfCopyFieldsImp
,PdfStamperImp
,PdfWriter
public interface PdfDocumentActions
A PDF document can have an open action and other additional actions.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description void
setOpenAction(PdfAction action)
When the document opens thisaction
will be invoked.void
setOpenAction(java.lang.String name)
When the document opens it will jump to the destination with this name.
-
-
-
Method Detail
-
setOpenAction
void setOpenAction(java.lang.String name)
When the document opens it will jump to the destination with this name.- Parameters:
name
- the name of the destination to jump to
-
setOpenAction
void setOpenAction(PdfAction action)
When the document opens thisaction
will be invoked.- Parameters:
action
- the action to be invoked
-
-