mouseEnter property

PdfAction? mouseEnter

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

Implementation

PdfAction? get mouseEnter => _mouseEnter;
void mouseEnter=(PdfAction? value)

Implementation

set mouseEnter(PdfAction? value) {
  if (value != null && _mouseEnter != value) {
    _mouseEnter = value;
    _helper.dictionary!.setProperty(PdfDictionaryProperties.e, _mouseEnter);
  }
}