Package com.winnovative_software
Class PdfFormCheckBox
java.lang.Object
com.winnovative_software.PdfFormField
com.winnovative_software.PdfFormCheckBox
Represents a check box in a PDF form
- 
Constructor SummaryConstructorsConstructorDescriptionPdfFormCheckBox(RectangleFloat box, boolean isChecked) Constructs a check box form fields
- 
Method SummaryModifier and TypeMethodDescriptionbooleanchecked()Gets the initial status of the PDF form check box controlvoidsetChecked(boolean isChecked) Sets the initial status of the PDF form check box controlMethods inherited from class com.winnovative_software.PdfFormFieldboundingRectangle, defaultValue, export, flatten, name, parentForm, readOnly, required, setAction, setBoundingRectangle, setDefaultValue, setExport, setFlatten, setName, setReadOnly, setRequired, setStyle, setToolTip, style, toolTip
- 
Constructor Details- 
PdfFormCheckBoxConstructs a check box form fields- Parameters:
- box- the check box control bounding box
- isChecked- the checked state of the text box
 
 
- 
- 
Method Details- 
checkedpublic boolean checked()Gets the initial status of the PDF form check box control- Returns:
- the initial status of the PDF form check box control
 
- 
setCheckedpublic void setChecked(boolean isChecked) Sets the initial status of the PDF form check box control- Parameters:
- isChecked- the initial status to set
 
 
-