Package | Description |
---|---|
com.foxit.gsdk.pdf | |
com.foxit.gsdk.pdf.action | |
com.foxit.gsdk.pdf.annots | |
com.foxit.gsdk.pdf.form |
Modifier and Type | Method and Description |
---|---|
PDFAction |
PDFBookmarkIterator.getAction(int index)
Get the specified bookmark action.
|
PDFAction |
PDFPage.getAction(int trigger,
int index)
Get a trigger action of a page.
|
PDFAction |
PDFDocument.getAction(int trigger,
int index)
Get document trigger action.
|
Modifier and Type | Method and Description |
---|---|
void |
PDFPage.insertAction(int trigger,
int index,
PDFAction action)
Insert a page trigger action.
|
void |
PDFDocument.insertAction(int trigger,
int index,
PDFAction action)
Insert document trigger action.
|
void |
PDFBookmarkIterator.insertAction(int index,
PDFAction action)
Insert bookmark action.
|
boolean |
PDFPage.setAction(int trigger,
int index,
PDFAction action)
Set a page trigger action.
|
boolean |
PDFDocument.setAction(int trigger,
int index,
PDFAction action)
Set document trigger action.
|
boolean |
PDFBookmarkIterator.setAction(int index,
PDFAction action)
Set bookmark action.
|
Modifier and Type | Class and Description |
---|---|
class |
PDFEmbeddedGotoAction
PDFEmbeddedGotoAction class represents as PDF embedded go-to action.
|
class |
PDFGotoAction
PDFGotoAction class represents as PDF go-to action.
|
class |
PDFHideAction
PDFHideAction class represents as PDF hide action.
|
class |
PDFImportDataAction
PDF Import Data Action
|
class |
PDFJavascriptAction
PDF JavaScript action.
|
class |
PDFLaunchAction
PDF launch action interface.
|
class |
PDFNamedAction
PDFNamedAction class represents as PDF named action.
|
class |
PDFRemoteGotoAction
PDFRemoteGotoAction class represents as PDF remote goto action.
|
class |
PDFResetFormAction
PDFResetFormAction class represents as PDF reset form action.
|
class |
PDFSubmitFormAction
PDFSubmitFormAction class represents as PDF submit form action.
|
class |
PDFURIAction
PDFURIAction class represents as PDF URI action.
|
Modifier and Type | Method and Description |
---|---|
static PDFAction |
PDFAction.createEmbeddedGotoAction(PDFEmbeddedGotoActionTarget target,
PDFAttachment attachment,
PDFDestination dest,
boolean isNewWindow)
Create a new embedded go-to action.
|
static PDFAction |
PDFAction.createEmbeddedGotoAction(PDFEmbeddedGotoActionTarget target,
PDFAttachment attachment,
java.lang.String destName,
boolean isNewWindow)
Create a new embedded go-to action.
|
static PDFAction |
PDFAction.createGotoAction(PDFDestination destination)
Create a new go-to action.
|
static PDFAction |
PDFAction.createHideAction(java.lang.String[] fieldsList,
boolean isHide)
Create a new hide action.
|
static PDFAction |
PDFAction.createImportDataAction(PDFAttachment attachment)
Create a new import-data action.
|
static PDFAction |
PDFAction.createJavascriptAction(java.lang.String script)
Create a new JavaScript action.
|
static PDFAction |
PDFAction.createLaunchAction(java.lang.String fileName,
java.lang.String defaultPath,
java.lang.String operations,
java.lang.String parameters,
boolean isNewWindow)
Create a new launch action.
|
static PDFAction |
PDFAction.createNamedAction(java.lang.String name)
Create a new named action.
|
static PDFAction |
PDFAction.createRemoteGotoAction(java.lang.String fileName,
PDFDestination destination)
Create a new remote go-to action.
|
static PDFAction |
PDFAction.createRemoteGotoAction(java.lang.String fileName,
java.lang.String destName)
Create a new embedded go-to action.
|
static PDFAction |
PDFAction.createResetFormAction(int flags,
java.lang.String[] fields)
Create a new reset-form action.
|
static PDFAction |
PDFAction.createSubmitFormAction(int flags,
java.lang.String[] fields,
PDFAttachment attachment)
Create a new submit-form action.
|
static PDFAction |
PDFAction.createURIAction(java.lang.String url,
boolean isMapMousePos)
Create a new URI action.
|
Modifier and Type | Method and Description |
---|---|
PDFAction |
Widget.getAction(int trigger,
int index)
Get action data of specific index associated with current annotation.
|
PDFAction |
Link.getAction(int trigger,
int index)
Get action data of specific index associated with current link annotation.
|
Modifier and Type | Method and Description |
---|---|
void |
Widget.insertAction(int trigger,
int index,
PDFAction action)
Insert action data of specified index associated with current widget
annotation.
|
void |
Link.insertAction(int trigger,
int index,
PDFAction action)
Insert action data of specified index associated with current link annotation.
|
boolean |
Widget.setAction(int trigger,
int index,
PDFAction action)
Set action data of specified index associated with current widget annotation.
|
boolean |
Link.setAction(int trigger,
int index,
PDFAction action)
Set action data of specified index associated with current link annotation.
|
Modifier and Type | Method and Description |
---|---|
PDFAction |
PDFFormField.getAction(int trigger,
int index)
Retrieve action associated with a field and a trigger type at a specified
index in a form.
|
Modifier and Type | Method and Description |
---|---|
boolean |
PDFFormField.insertAction(int trigger,
int index,
PDFAction action)
Insert an action associated with current field and a trigger type at a
specified index in a form.
|
boolean |
PDFFormField.setAction(int trigger,
int index,
PDFAction action)
Update an action associated with current field and a trigger type at a
specified index in a form.
|