mouseEnter property

PdfAction? mouseEnter

Gets or sets the action to be performed when the mouse cursor enters the fields’s area.

Implementation

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

Implementation

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