Package com.pspdfkit.forms
Class EditableButtonFormElement
-
- All Implemented Interfaces:
public abstract class EditableButtonFormElement extends ButtonFormElement
Represents editable button in a PDF form - i.e. checkbox or radio button.
-
-
Method Summary
Modifier and Type Method Description boolean
select()
Selects the button. boolean
deselect()
Deselects the button. boolean
toggleSelection()
Toggles button selection. boolean
isSelected()
Checks if button is selected. -
-
Method Detail
-
select
boolean select()
Selects the button.
- Returns:
true
when button state was updated.
-
deselect
boolean deselect()
Deselects the button.
- Returns:
true
when button state was updated.
-
toggleSelection
boolean toggleSelection()
Toggles button selection.
- Returns:
true
when button state was updated.
-
isSelected
boolean isSelected()
Checks if button is selected.
- Returns:
true
when button is selected.
-
-
-
-