lostFocus property

PdfAction? lostFocus

Gets or sets the action to be performed when the annotation loses the input focus.

Implementation

PdfAction? get lostFocus => _lostFocus;
void lostFocus=(PdfAction? value)

Implementation

set lostFocus(PdfAction? value) {
  if (value != null && _lostFocus != value) {
    _lostFocus = value;
    _helper.dictionary!.setProperty(PdfDictionaryProperties.bl, _lostFocus);
  }
}