Some test text!
Web / Guides / Rectangle
Rectangle annotations are one of the basic shapes for annotating. You can use this to box certain areas on a document to bring attention to them.
Rectangle annotations can have both a fill and stroke color. The stroke or border style can also be changed between a solid, dashed, or cloudy style.
WebViewer(...)
.then(instance => {
const { documentViewer, annotationManager, Annotations } = instance.Core;
documentViewer.addEventListener('annotationsLoaded', () => {
const annot = new Annotations.RectangleAnnotation({
PageNumber: 1,
X: 100,
Y: 50,
Width: 150,
Height: 25,
StrokeColor: new Annotations.Color(0, 255, 0, 1),
});
annotationManager.addAnnotation(annot);
annotationManager.redrawAnnotation(annot);
});
});
Element name: square
<square page="0" rect="252.100,604.080,331.510,659" color="#E44234" flags="print" name="7103e3a5-515e-9e61-007e-b595d3c754ce" title="Guest" subject="Rectangle" date="D:20220601141141-07'00'" creationdate="D:20220601141116-07'00'"/>
Gets or sets the page number of a document that the annotation appears on.
Gets or sets the annotation's x-axis position.
Gets or sets the annotation's y-axis position.
Gets or sets the height of the annotation.
Gets or sets the width of the annotation.
For the full list of properties, please visit the annotation's API docs.
Gets or sets the color of the annotation's interior.
Gets or sets the color of the annotation's stroke.
Gets or sets the width of the annotation's stroke outline.
Gets or sets the border style of an annotation. Possible styles include:
Gets or sets the border dash style of an annotation. This expects a string representing the length of dashes and spacing inbetween, delimited by commas (ex. 3, 3
). You can specify any amount of lengths but, an odd number of values will be made even by cloning it as a second set. To understand further, you can read more about the setLineDash
API.
Describes intensity of cloudy style effect. Use 0 for no effect.
The author of the annotation.
Gets or sets the annotation's stroke color.
Gets or sets whether the annotation is hidden.
Gets or sets whether the annotation is invisible, only if it is an unknown annotation type. Generally for hiding annotations you should use "Hidden".
Gets or sets whether any parts of the annotation drawn outside of the rect are clickable.
Gets or sets whether the annotation should be listed in annotation lists. If set to false, the annotation will also become unselectable.
Gets or sets whether the annotation is locked or not. If it's locked it can't be edited or deleted, but the note can be edited.
Gets or sets whether the annotation contents are locked or not. If the contents are locked then note can't be edited but the annotation can be edited or deleted.
Gets or sets if this annotation can be deleted.
Gets or sets whether or not the annotation can be moved.
Gets or sets if this annotation can be resized by the user.
Gets or sets if this annotation can be rotated.
Gets or sets whether the annotation is visible on the screen. Differs from Hidden in that it can still be printed if the print flag is set.
Gets or sets if this annotation scales with the page.
Gets or sets the opacity of the annotation.
Gets or sets whether the annotation should be displayed when printing the page.
Gets or sets whether the annotation is readonly or not. If it's readonly both the annotation itself and its note can't be edited or deleted.
Gets or sets whether the ToggleNoView flag is set on the annotation.
Although rectangle annotations have both move
and resize
APIs, it also provides a setRect
API which effectively does both which makes it worthy to note.
WebViewer(...)
.then(instance => {
const { annotationManager, Annotations } = instance.Core;
annotationManager.addEventListener('annotationChanged', (annotations, action) => {
if (action === 'add') {
annotations.forEach(annot => {
if (annot instanceof Annotations.RectangleAnnotation) {
const rect = annot.getRect();
rect.X = Math.round(rect.X);
rect.Y = Math.round(rect.Y);
rect.Width = Math.round(rect.Width);
rect.Height = Math.round(rect.Height);
annot.setRect(rect);
}
});
}
});
});
Rectangle annotations can be used as placeholders to be replaced with something else. In WebViewer, the form builder uses rectangles to represent certain forms fields, and swapping them out for the actual form field widget annotations after pressing Apply Fields
.
Trial setup questions? Ask experts on Discord
Need other help? Contact Support
Pricing or product questions? Contact Sales