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