mouseLeave property
PdfAction?
get
mouseLeave
Gets or sets the action to be performed when the cursor exits the fields’s area.
Implementation
PdfAction? get mouseLeave => _helper.annotationActions.mouseLeave;
set
mouseLeave
(PdfAction? value)
Implementation
set mouseLeave(PdfAction? value) {
if (value != null) {
_helper.annotationActions.mouseLeave = value;
_helper.changed = true;
}
}