gotFocus property

PdfAction? gotFocus

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

Implementation

PdfAction? get gotFocus => _gotFocus;
void gotFocus=(PdfAction? value)

Implementation

set gotFocus(PdfAction? value) {
  if (value != null && _gotFocus != value) {
    _gotFocus = value;
    _helper.dictionary!.setProperty(PdfDictionaryProperties.fo, _gotFocus);
  }
}