lostFocus property
PdfAction?
get
lostFocus
Gets or sets the action to be performed when the annotation loses the input focus.
Implementation
PdfAction? get lostFocus => _lostFocus;
set
lostFocus
(PdfAction? value)
Implementation
set lostFocus(PdfAction? value) {
if (value != null && _lostFocus != value) {
_lostFocus = value;
_helper.dictionary!.setProperty(PdfDictionaryProperties.bl, _lostFocus);
}
}