mouseLeave property

PdfAction? mouseLeave

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

Implementation

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

Implementation

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