Package com.pspdfkit.document
Interface DocumentActionListener
-
- All Implemented Interfaces:
public interface DocumentActionListener
Handles PDF actions triggered inside the PDF document - these are usually things like button presses, form submission, etc.
-
-
Method Summary
Modifier and Type Method Description abstract boolean
onExecuteAction(@NonNull() Action action)
Called when PDF action should be executed. -
-
Method Detail
-
onExecuteAction
@UiThread() abstract boolean onExecuteAction(@NonNull() Action action)
Called when PDF action should be executed.
- Parameters:
action
- Action that should be executed.- Returns:
Should
true
if the action was handled and no further processing should happen.false
if default handlers should handle the action.
-
-
-
-