Package com.pspdfkit.forms
Class CheckBoxFormField
-
- All Implemented Interfaces:
public class CheckBoxFormField extends EditableButtonFormField
One or more check boxes that can toggle between two states - on and off.
-
-
Method Summary
Modifier and Type Method Description List<out CheckBoxFormElement>
getSelectedButtons()
Gets a list of form elements that are currently selected. List<out CheckBoxFormElement>
getFormElements()
Retrieve list of form elements that represents this field visually. CheckBoxFormElement
getFormElement()
Returns first form element. -
-
Method Detail
-
getSelectedButtons
@NonNull() List<out CheckBoxFormElement> getSelectedButtons()
Gets a list of form elements that are currently selected.
- Returns:
List of form elements representing buttons that are currently selected.
-
getFormElements
@NonNull() List<out CheckBoxFormElement> getFormElements()
Retrieve list of form elements that represents this field visually. Each FormElement can be part of a single field and each field can contain multiple form elements.
- Returns:
List of child form elements.
-
getFormElement
@NonNull() CheckBoxFormElement getFormElement()
Returns first form element.
-
-
-
-