gotFocus property
PdfAction?
get
gotFocus
Gets or sets the action to be performed when the field receives the input focus.
Implementation
PdfAction? get gotFocus => _helper.annotationActions.gotFocus;
set
gotFocus
(PdfAction? value)
Implementation
set gotFocus(PdfAction? value) {
if (value != null) {
_helper.annotationActions.gotFocus = value;
_helper.changed = true;
}
}