|
||||||||||
PREV NEXT | FRAMES NO FRAMES |
Packages that use PDFAction | |
---|---|
org.faceless.pdf2 | Contains the classes used to create a PDF document |
Uses of PDFAction in org.faceless.pdf2 |
---|
Methods in org.faceless.pdf2 that return PDFAction | |
---|---|
static PDFAction |
PDFAction.formImportData(String file)
Return a new PDFAction which imports a Forms Data Format (FDF)
file into the document AcroForm, setting some or all of the forms values. |
static PDFAction |
PDFAction.formJavaScript(String javascript)
Return a new PDFAction which executes a JavaScript action. |
static PDFAction |
PDFAction.formReset()
Return a new PDFAction which resets the documents AcroForm,
setting every field to its default values. |
static PDFAction |
PDFAction.formSubmit(String url,
int method)
Return a new PDFAction which submits the documents AcroForm. |
PDFAction |
AnnotationLink.getAction()
Return the action performed by this hyperlink |
PDFAction |
PDFBookmark.getAction()
Get the action this bookmark performs when selected |
PDFAction |
WidgetAnnotation.getAction(Event event)
Return the action that occurs when the specified event happens to this annotation. |
PDFAction |
FormElement.getAction(Event event)
Get the action that's performed when the specified event takes place on this field. |
PDFAction |
PDF.getAction(Event event)
Return the action that's performed when the specified event occurs on the document, as set by setAction . |
PDFAction |
PDFPage.getAction(Event type)
Get the action that's perform when this page is displayed. |
PDFAction |
PDFAction.getNext()
Return the action that's next in the chain after this one, or null if no further actions are defined. |
static PDFAction |
PDFAction.goTo(PDFPage page)
Return a new PDFAction which jumps to the specified page in the PDF document. |
static PDFAction |
PDFAction.goTo(PDFPage page,
float x,
float y,
float zoom)
Return a new PDFAction which jumps to the specified page in the PDF document, at the specified x, y and zoom level. |
static PDFAction |
PDFAction.goToFit(PDFPage page)
Return a new PDFAction which jumps to the specified page in the PDF document. |
static PDFAction |
PDFAction.goToFitHeight(PDFPage page,
float x)
Return a new PDFAction which jumps to the specified page in the PDF document. |
static PDFAction |
PDFAction.goToFitRectangle(PDFPage page,
float x1,
float y1,
float x2,
float y2)
Return a new PDFAction which jumps to the specified page in the PDF document. |
static PDFAction |
PDFAction.goToFitRemoteRectangle(String filename,
int pagenumber,
float left,
float bottom,
float width,
float height)
As for goToFitRectangle(org.faceless.pdf2.PDFPage, float, float, float, float) , but returns a new PDFAction which moves to a page in another
PDF. |
static PDFAction |
PDFAction.goToFitWidth(PDFPage page,
float y)
Return a new PDFAction which jumps to the specified page in the PDF document. |
static PDFAction |
PDFAction.goToRemote(String filename,
int pagenumber,
float x,
float y,
float zoom)
As for goTo(org.faceless.pdf2.PDFPage) , but returns a new PDFAction which moves to a page in another
PDF. |
static PDFAction |
PDFAction.goToRemote(String filename,
int pagenumber,
float x,
float y,
float zoom,
String newwindow)
As for goTo(org.faceless.pdf2.PDFPage) , but returns a new PDFAction which moves to a page in another
PDF. |
static PDFAction |
PDFAction.goToURL(URI uri,
boolean isImageMap)
Return a new PDFAction which jumps to the specified URI. |
static PDFAction |
PDFAction.goToURL(URL url)
Return a new PDFAction which jumps to the specified URL. |
static PDFAction |
PDFAction.goToURL(URL url,
boolean isImageMap)
Return a new PDFAction which jumps to the specified URL. |
static PDFAction |
PDFAction.hideWidget(WidgetAnnotation annot)
Return a new PDFAction which hides the specified WidgetAnnotation . |
PDFAction |
JSEvent.javaGetAction()
Return the PDFAction to be run by the event object |
static PDFAction |
PDFAction.launch(String filename,
String newwindow)
Create a "Launch" action. |
static PDFAction |
PDFAction.named(String name)
Return a new PDFAction which runs the named action. |
static PDFAction |
PDFAction.playSound(PDFSound s)
Return a new PDFAction which plays a PDFSound when activated. |
static PDFAction |
PDFAction.playSound(PDFSound sound,
int volume,
boolean repeat,
boolean mix)
Return a new PDFAction which plays a PDFSound when activated. |
static PDFAction |
PDFAction.showWidget(WidgetAnnotation annot)
Return a new PDFAction which makes the specified WidgetAnnotation
visible on screen. |
Methods in org.faceless.pdf2 with parameters of type PDFAction | |
---|---|
void |
PDFPage.beginTextLink(PDFAction action,
PDFStyle linkstyle)
Start a "link" section in the text. |
void |
PDFPage.drawTextLink(String text,
float x,
float y,
PDFAction action)
Draw a line of text at a the specified position, and set it to link to the specified action. |
void |
WidgetAnnotation.setAction(Event event,
PDFAction action)
Set an action to occur when the specified event happens to this annotation. |
void |
FormElement.setAction(Event event,
PDFAction action)
Set the action to perform when the specified event takes place on this field. |
void |
PDF.setAction(Event event,
PDFAction action)
Specify an action to perform when the specified event occurs on the document. |
void |
PDFPage.setAction(Event event,
PDFAction action)
Set the action to perform when the specified event occurs. |
void |
AnnotationLink.setAction(PDFAction action)
Set the action for this hyperlink |
void |
PDFBookmark.setAction(PDFAction action)
Set the action this bookmark performs when selected |
void |
PDFAction.setNext(PDFAction action)
The setNext method allows you to create "chains" of actions
which are executed whenever the first entry in the chain is run. |
Constructors in org.faceless.pdf2 with parameters of type PDFAction | |
---|---|
PDFBookmark(String name,
PDFAction action)
Create a new bookmark with an initial state of "closed". |
|
PDFBookmark(String name,
PDFAction action,
boolean open)
Create a new bookmark and set the initial state to "open" or "closed" |
|
||||||||||
PREV NEXT | FRAMES NO FRAMES |