mouseLeave property

PdfAction? mouseLeave

Gets or sets the action to be performed when the cursor exits the annotation’s

Implementation

PdfAction? get mouseLeave => _mouseLeave;
void mouseLeave=(PdfAction? value)

Implementation

set mouseLeave(PdfAction? value) {
  if (value != null && _mouseLeave != value) {
    _mouseLeave = value;
    _helper.dictionary!.setProperty(PdfDictionaryProperties.x, _mouseLeave);
  }
}