mouseDown property

PdfAction? mouseDown

Gets or sets the action to be performed when the mouse button is pressed inside the field’s area.

Implementation

PdfAction? get mouseDown => _helper.annotationActions.mouseDown;
void mouseDown=(PdfAction? value)

Implementation

set mouseDown(PdfAction? value) {
  if (value != null) {
    _helper.annotationActions.mouseDown = value;
    _helper.changed = true;
  }
}