Flags
Syntax
interface Flags {
print?: boolean;
noMove?: boolean;
noView?: boolean;
noResize?: boolean;
noRotate?: boolean;
readOnly?: boolean;
}
Attributes
Whether the annotation is printable, default value: true
. Only printable annotations can be printed 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
.