mouseEnter property
PdfAction?
get
mouseEnter
Gets or sets the action to be performed when the cursor enters the annotation’s
Implementation
PdfAction? get mouseEnter => _mouseEnter;
set
mouseEnter
(PdfAction? value)
Implementation
set mouseEnter(PdfAction? value) {
if (value != null && _mouseEnter != value) {
_mouseEnter = value;
_helper.dictionary!.setProperty(PdfDictionaryProperties.e, _mouseEnter);
}
}