Public Member Functions | |
ChoiceOption () | |
Constructor. | |
ChoiceOption (String option_value, String option_label, boolean selected, boolean default_selected) | |
Constructor, with parameters. More... | |
ChoiceOption (ChoiceOption option) | |
Constructor, with another ChoiceOption object. More... | |
boolean | getDefault_selected () |
Get used to indicate whether the option would be selected by default or not. More... | |
String | getOption_label () |
Get the displayed string value for the option. More... | |
String | getOption_value () |
Get the option string value. More... | |
boolean | getSelected () |
Get used to indicate whether the option is selected or not. More... | |
void | set (String option_value, String option_label, boolean selected, boolean default_selected) |
Set value. More... | |
void | setDefault_selected (boolean value) |
Set used to indicate whether the option would be selected by default or not. More... | |
void | setOption_label (String value) |
Set the displayed string value for the option. More... | |
void | setOption_value (String value) |
Set the option string value. More... | |
void | setSelected (boolean value) |
Set used to indicate whether the option is selected or not. More... | |
This class represents the data of an option in list box or combo box.
com.foxit.sdk.pdf.interform.ChoiceOption.ChoiceOption | ( | String | option_value, |
String | option_label, | ||
boolean | selected, | ||
boolean | default_selected | ||
) |
Constructor, with parameters.
option_value | The option string value. |
option_label | The displayed string value for the option. |
selected | true means the option is selected, and false means the option is not selected. |
default_selected | true means the option would be selected by default, and false means the option would not be selected by default. |
com.foxit.sdk.pdf.interform.ChoiceOption.ChoiceOption | ( | ChoiceOption | option | ) |
Constructor, with another ChoiceOption object.
option | Another ChoiceOption object. |
com.foxit.sdk.pdf.interform.ChoiceOption.getDefault_selected | ( | ) |
Get used to indicate whether the option would be selected by default or not.
com.foxit.sdk.pdf.interform.ChoiceOption.getOption_label | ( | ) |
Get the displayed string value for the option.
com.foxit.sdk.pdf.interform.ChoiceOption.getOption_value | ( | ) |
Get the option string value.
com.foxit.sdk.pdf.interform.ChoiceOption.getSelected | ( | ) |
Get used to indicate whether the option is selected or not.
void com.foxit.sdk.pdf.interform.ChoiceOption.set | ( | String | option_value, |
String | option_label, | ||
boolean | selected, | ||
boolean | default_selected | ||
) |
Set value.
option_value | The option string value. |
option_label | The displayed string value for the option. |
selected | true means the option is selected, and false means the option is not selected. |
default_selected | true means the option would be selected by default, and false means the option would not be selected by default. |
com.foxit.sdk.pdf.interform.ChoiceOption.setDefault_selected | ( | boolean | value | ) |
Set used to indicate whether the option would be selected by default or not.
[in] | default_selected | Used to indicate whether the option would be selected by default or not. |
com.foxit.sdk.pdf.interform.ChoiceOption.setOption_label | ( | String | value | ) |
Set the displayed string value for the option.
[in] | option_label | The displayed string value for the option. |
com.foxit.sdk.pdf.interform.ChoiceOption.setOption_value | ( | String | value | ) |
Set the option string value.
[in] | option_value | The option string value. |
com.foxit.sdk.pdf.interform.ChoiceOption.setSelected | ( | boolean | value | ) |
Set used to indicate whether the option is selected or not.
[in] | selected | Used to indicate whether the option is selected or not. |