Flags
Syntax
interface Flags {
print?: boolean;
noMove?: boolean;
noView?: boolean;
noResize?: boolean;
noRotate?: boolean;
readOnly?: boolean;
}
Attributes
Indicates whether the annotation is printable. Default value: true
. Only printable annotations will be included when the page is printed.
noMove
Prevents users from moving annotations.
Default value: false
noView
Not to display the annotation or allow a user to interact with the annotation.
Default value: false
noResize
Prevents users from resizing annotations.
Default value: false
noRotate
Prevents users from rotating annotations.
Default value: false
readOnly
Not to allow a user to interact with the annotation, default value: false
.