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