public final class AnnotationActionCollection extends BaseActionCollection
Represents the collection of annotation actions.
Modifier and Type | Method and Description |
---|---|
PdfAction |
getOnCalculate()
Gets an action to calculate field value.
|
PdfAction |
getOnClosePage()
Gets an action to be performed when the page containing the annotation is closed.
|
PdfAction |
getOnEnter()
Gets an action to be performed when the cursor enters the annotation's active area.
|
PdfAction |
getOnExit()
Gets an action to be performed when the cursor exits the annotation's active area.
|
PdfAction |
getOnFormat()
Gets action to be performed to format field value.
|
PdfAction |
getOnHidePage()
Gets an action to be performed when the page containing the annotation is no longer visible in the viewer application's user interface.
|
PdfAction |
getOnLostFocus()
Gets an action to be performed when the annotation loses the input focus.
|
PdfAction |
getOnModifyCharacter()
Gets an action to be performed when user modifies character of the field.
|
PdfAction |
getOnOpenPage()
Gets an action to be performed when the page containing the annotation is opened.
|
PdfAction |
getOnPressMouseBtn()
Gets an action to be performed when the mouse button is pressed inside the annotation's active area.
|
PdfAction |
getOnReceiveFocus()
Gets an action to be performed when the annotation receives the input focus.
|
PdfAction |
getOnReleaseMouseBtn()
Gets an action to be performed when the mouse button is released inside the annotation's active area.
|
PdfAction |
getOnShowPage()
Get an action to be performed when the page containing the annotation becomes visible in the viewer application's user interface.
|
PdfAction |
getOnValidate()
Gets an action to be performed when user changes contents of the field.
|
void |
setOnCalculate(PdfAction value)
Sets an action to calculate field value.
|
void |
setOnClosePage(PdfAction value)
Sets an action to be performed when the page containing the annotation is closed.
|
void |
setOnEnter(PdfAction value)
Sets an action to be performed when the cursor enters the annotation's active area.
|
void |
setOnExit(PdfAction value)
Sets an action to be performed when the cursor exits the annotation's active area.
|
void |
setOnFormat(PdfAction value)
Sets action to be performed to format field value.
|
void |
setOnHidePage(PdfAction value)
Sets an action to be performed when the page containing the annotation is no longer visible in the viewer application's user interface.
|
void |
setOnLostFocus(PdfAction value)
Sets an action to be performed when the annotation loses the input focus.
|
void |
setOnModifyCharacter(PdfAction value)
Sets an action to be performed when user modifies character of the field.
|
void |
setOnOpenPage(PdfAction value)
Sets an action to be performed when the page containing the annotation is opened.
|
void |
setOnPressMouseBtn(PdfAction value)
Sets an action to be performed when the mouse button is pressed inside the annotation's active area.
|
void |
setOnReceiveFocus(PdfAction value)
Sets an action to be performed when the annotation receives the input focus.
|
void |
setOnReleaseMouseBtn(PdfAction value)
Sets an action to be performed when the mouse button is released inside the annotation's active area.
|
void |
setOnShowPage(PdfAction value)
Sets an action to be performed when the page containing the annotation becomes visible in the viewer application's user interface.
|
void |
setOnValidate(PdfAction value)
Sets an action to be performed when user changes contents of the field.
|
removeActions
public PdfAction getOnEnter()
Gets an action to be performed when the cursor enters the annotation's active area.
public void setOnEnter(PdfAction value)
Sets an action to be performed when the cursor enters the annotation's active area.
value
- PdfAction objectpublic PdfAction getOnExit()
Gets an action to be performed when the cursor exits the annotation's active area.
public void setOnExit(PdfAction value)
Sets an action to be performed when the cursor exits the annotation's active area.
value
- PdfAction objectpublic PdfAction getOnPressMouseBtn()
Gets an action to be performed when the mouse button is pressed inside the annotation's active area.
public void setOnPressMouseBtn(PdfAction value)
Sets an action to be performed when the mouse button is pressed inside the annotation's active area.
value
- PdfAction objectpublic PdfAction getOnReleaseMouseBtn()
Gets an action to be performed when the mouse button is released inside the annotation's active area.
public void setOnReleaseMouseBtn(PdfAction value)
Sets an action to be performed when the mouse button is released inside the annotation's active area.
value
- PdfAction objectpublic PdfAction getOnReceiveFocus()
Gets an action to be performed when the annotation receives the input focus.
public void setOnReceiveFocus(PdfAction value)
Sets an action to be performed when the annotation receives the input focus.
value
- PdfAction objectpublic PdfAction getOnOpenPage()
Gets an action to be performed when the page containing the annotation is opened.
public void setOnOpenPage(PdfAction value)
Sets an action to be performed when the page containing the annotation is opened.
value
- PdfAction objectpublic PdfAction getOnClosePage()
Gets an action to be performed when the page containing the annotation is closed.
public void setOnClosePage(PdfAction value)
Sets an action to be performed when the page containing the annotation is closed.
value
- PdfAction objectpublic PdfAction getOnShowPage()
Get an action to be performed when the page containing the annotation becomes visible in the viewer application's user interface.
public void setOnShowPage(PdfAction value)
Sets an action to be performed when the page containing the annotation becomes visible in the viewer application's user interface.
value
- PdfAction objectpublic PdfAction getOnHidePage()
Gets an action to be performed when the page containing the annotation is no longer visible in the viewer application's user interface.
public void setOnHidePage(PdfAction value)
Sets an action to be performed when the page containing the annotation is no longer visible in the viewer application's user interface.
value
- PdfAction objectpublic PdfAction getOnLostFocus()
Gets an action to be performed when the annotation loses the input focus.
public void setOnLostFocus(PdfAction value)
Sets an action to be performed when the annotation loses the input focus.
value
- PdfAction objectpublic PdfAction getOnModifyCharacter()
Gets an action to be performed when user modifies character of the field.
public void setOnModifyCharacter(PdfAction value)
Sets an action to be performed when user modifies character of the field.
value
- action to be performed when user modifies character of the field.public PdfAction getOnValidate()
Gets an action to be performed when user changes contents of the field.
public void setOnValidate(PdfAction value)
Sets an action to be performed when user changes contents of the field.
value
- action to be performed when user changes contents of the field.public PdfAction getOnFormat()
Gets action to be performed to format field value.
public void setOnFormat(PdfAction value)
Sets action to be performed to format field value.
value
- action to be performed to format field value.public PdfAction getOnCalculate()
Gets an action to calculate field value.
public void setOnCalculate(PdfAction value)
Sets an action to calculate field value.
value
- action to calculate field value.