mouseDown property
PdfAction?
get
mouseDown
Gets or sets the action to be performed when the mouse button is pressed inside the annotation’s active area.
Implementation
PdfAction? get mouseDown => _mouseDown;
set
mouseDown
(PdfAction? value)
Implementation
set mouseDown(PdfAction? value) {
if (value != null && _mouseDown != value) {
_mouseDown = value;
_helper.dictionary!.setProperty(PdfDictionaryProperties.d, _mouseDown);
}
}