annotationMode property

PdfAnnotationMode 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;
void annotationMode=(PdfAnnotationMode value)

Implementation

set annotationMode(PdfAnnotationMode value) {
  if (_annotationMode != value) {
    clearSelection();
    _annotationMode = value;
  }
}