mouseEnter property
PdfAction?
get
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;
set
mouseEnter
(PdfAction? value)
Implementation
set mouseEnter(PdfAction? value) {
if (value != null) {
_helper.annotationActions.mouseEnter = value;
_helper.changed = true;
}
}