gotFocus property

PdfAction? gotFocus

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

Implementation

PdfAction? get gotFocus => _helper.annotationActions.gotFocus;
void gotFocus=(PdfAction? value)

Implementation

set gotFocus(PdfAction? value) {
  if (value != null) {
    _helper.annotationActions.gotFocus = value;
    _helper.changed = true;
  }
}