annotationMode property
PdfAnnotationMode
get
annotationMode
Gets or sets a value indicating the type of annotation that should be drawn using UI interaction on the PDF pages.
Implementation
PdfAnnotationMode get annotationMode => _annotationMode;
set
annotationMode
(PdfAnnotationMode value)
Implementation
set annotationMode(PdfAnnotationMode value) {
if (_annotationMode != value) {
clearSelection();
_annotationMode = value;
}
}