Interface
interface AnnotationDrawingStyleConfig {
rectangle?: RectangleStyle;
ellipse?: EllipseStyle;
polygon?: PolygonStyle;
polyline?: PolylineStyle;
line?: LineStyle;
ink?: InkStyle;
textBox?: TextBoxStyle;
textTypewriter?: TextTypewriterStyle;
stamp?: StampStyle;
}
Attributes
rectangle
The default drawing style of rectangle annotation - see RectangleStyle
for more details. If not set, this uses the default values of RectangleStyle
.
ellipse
The default drawing style of ellipse annotation - see EllipseStyle
for more details. If not set, this uses the default values of EllipseStyle
.
polygon
The default drawing style of the polygon annotation - see PolygonStyle
for more details. If not set, this uses the default values of PolygonStyle
.
polyline
The default drawing style of the polyline annotation - see PolylineStyle
for more details. If not set, this uses the default values of PolylineStyle
.
line
The default drawing style of the line annotation - see LineStyle
for more details. If not set, this uses the default values of LineStyle
.
textBox
The default drawing style of the textbox annotation - see TextBoxStyle
for more details. If not set, this uses the default values of TextBoxStyle
.
textTypewriter
The default drawing style of the text typewriter annotation - see TextTypewriterStyle
for more details. If not set, this uses the default values of TextTypewriterStyle
.
stamp
The default drawing style of the stamp annotation - see StampStyle
for more details. If not set, this uses the default values of StampStyle
.