checked property
bool
get
checked
Gets or sets a value indicating whether the PdfCheckBoxItem is checked.
Implementation
bool get checked => _helper.obtainCheckedStatus();
set
checked
(bool value)
Implementation
set checked(bool value) {
if (!_helper.field.readOnly) {
if (value != checked) {
_helper.setCheckedStatus(value);
PdfFormHelper.getHelper(_helper.field.form!).setAppearanceDictionary =
true;
}
}
}