Skip to content

Commit 2e5d2a2

Browse files
996394: Updated TOC and See also for Annotation Revamp
1 parent ae479f0 commit 2e5d2a2

36 files changed

Lines changed: 1496 additions & 48 deletions

Document-Processing-toc.html

Lines changed: 24 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -1415,18 +1415,30 @@
14151415
<li><a href="/document-processing/pdf/pdf-viewer/javascript-es6/text-search">Text Search</a></li>
14161416
<li>Annotation
14171417
<ul>
1418-
<li><a href="/document-processing/pdf/pdf-viewer/javascript-es6/annotations/text-markup-annotation">Text Markup Annotation</a></li>
1419-
<li><a href="/document-processing/pdf/pdf-viewer/javascript-es6/annotations/shape-annotation">Shape Annotation</a></li>
1420-
<li><a href="/document-processing/pdf/pdf-viewer/javascript-es6/annotations/stamp-annotation">Stamp Annotation</a></li>
1421-
<li><a href="/document-processing/pdf/pdf-viewer/javascript-es6/annotations/sticky-notes-annotation">Sticky notes</a></li>
1422-
<li><a href="/document-processing/pdf/pdf-viewer/javascript-es6/annotations/measurement-annotation">Measurement annotation</a></li>
1423-
<li><a href="/document-processing/pdf/pdf-viewer/javascript-es6/annotations/free-text-annotation">Free Text Annotation</a></li>
1424-
<li><a href="/document-processing/pdf/pdf-viewer/javascript-es6/annotations/ink-annotation">Ink Annotation</a></li>
1425-
<li><a href="/document-processing/pdf/pdf-viewer/javascript-es6/annotations/line-angle-constraints">Line Angle Constrain</a></li>
1426-
<li><a href="/document-processing/pdf/pdf-viewer/javascript-es6/annotations/comments">Comments</a></li>
1427-
<li><a href="/document-processing/pdf/pdf-viewer/javascript-es6/annotations/signature-annotation">Handwritten signature</a></li>
1428-
<li><a href="/document-processing/pdf/pdf-viewer/javascript-es6/annotations/annotation-event">Annotations Events</a></li>
1429-
<li><a href="/document-processing/pdf/pdf-viewer/javascript-es6/annotations/annotations-in-mobile-view">Annotations in Mobile view</a></li>
1418+
<li><a href="/document-processing/pdf/pdf-viewer/javascript-es6/annotations/overview">Overview</a></li>
1419+
<li>Annotation Types
1420+
<ul>
1421+
<li><a href="/document-processing/pdf/pdf-viewer/javascript-es6/annotations/annotation-types/highlight-annotation">Highlight Annotation</a></li>
1422+
<li><a href="/document-processing/pdf/pdf-viewer/javascript-es6/annotations/annotation-types/Squiggly-annotation">Squiggly Annotation</a></li>
1423+
<li><a href="/document-processing/pdf/pdf-viewer/javascript-es6/annotations/annotation-types/underline-annotation">Underline Annotation</a></li>
1424+
<li><a href="/document-processing/pdf/pdf-viewer/javascript-es6/annotations/annotation-types/strikethrough-annotation">Strikethrough Annotation</a></li>
1425+
<li><a href="/document-processing/pdf/pdf-viewer/javascript-es6/annotations/annotation-types/line-annotation">Line Annotation</a></li>
1426+
<li><a href="/document-processing/pdf/pdf-viewer/javascript-es6/annotations/annotation-types/arrow-annotation">Arrow Annotation</a></li>
1427+
<li><a href="/document-processing/pdf/pdf-viewer/javascript-es6/annotations/annotation-types/rectangle-annotation">Rectangle Annotation</a></li>
1428+
<li><a href="/document-processing/pdf/pdf-viewer/javascript-es6/annotations/annotation-types/circle-annotation">Circle Annotation</a></li>
1429+
<li><a href="/document-processing/pdf/pdf-viewer/javascript-es6/annotations/annotation-types/polygon-annotation">Polygon Annotation</a></li>
1430+
<li><a href="/document-processing/pdf/pdf-viewer/javascript-es6/annotations/annotation-types/free-text-annotation">Free Text Annotation</a></li>
1431+
<li><a href="/document-processing/pdf/pdf-viewer/javascript-es6/annotations/annotation-types/ink-annotation">Ink Annotation</a></li>
1432+
<li><a href="/document-processing/pdf/pdf-viewer/javascript-es6/annotations/annotation-types/stamp-annotation">Stamp Annotation</a></li>
1433+
<li><a href="/document-processing/pdf/pdf-viewer/javascript-es6/annotations/annotation-types/sticky-notes-annotation">Sticky Notes Annotation</a></li>
1434+
<li><a href="/document-processing/pdf/pdf-viewer/javascript-es6/annotations/annotation-types/redaction-annotation">Redaction Annotation</a></li>
1435+
<li><a href="/document-processing/pdf/pdf-viewer/javascript-es6/annotations/annotation-types/distance-annotation">Distance Annotation</a></li>
1436+
<li><a href="/document-processing/pdf/pdf-viewer/javascript-es6/annotations/annotation-types/perimeter-annotation">Perimeter Annotation</a></li>
1437+
<li><a href="/document-processing/pdf/pdf-viewer/javascript-es6/annotations/annotation-types/area-annotation">Area Annotation</a></li>
1438+
<li><a href="/document-processing/pdf/pdf-viewer/javascript-es6/annotations/annotation-types/radius-annotation">Radius Annotation</a></li>
1439+
<li><a href="/document-processing/pdf/pdf-viewer/javascript-es6/annotations/annotation-types/volume-annotation">Volume Annotation</a></li>
1440+
</ul>
1441+
</li>
14301442
</ul>
14311443
</li>
14321444
<li>Redaction

Document-Processing/PDF/PDF-Viewer/javascript-es6/annotations/annotation-event.md

Lines changed: 15 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -989,4 +989,18 @@ let viewer: PdfViewer = new PdfViewer({
989989
}
990990
});
991991
viewer.appendTo('#pdfViewer');
992-
```
992+
```
993+
994+
## See also
995+
996+
- [Annotation Overview](../overview)
997+
- [Annotation Types](../annotations/annotation-types/area-annotation)
998+
- [Annotation Toolbar](../toolbar-customization/annotation-toolbar)
999+
- [Create and Modify Annotation](../annotations/create-modify-annotation)
1000+
- [Customize Annotation](../annotations/customize-annotation)
1001+
- [Remove Annotation](../annotations/delete-annotation)
1002+
- [Handwritten Signature](../annotations/signature-annotation)
1003+
- [Export and Import Annotation](../annotations/export-import/export-annotation)
1004+
- [Annotation Permission](../annotations/annotation-permission)
1005+
- [Annotation in Mobile View](../annotations/annotations-in-mobile-view)
1006+
- [Annotation API](../annotations/annotations-api)

Document-Processing/PDF/PDF-Viewer/javascript-es6/annotations/annotation-permission.md

Lines changed: 15 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -95,4 +95,18 @@ Behavior notes
9595
- skipDownload true: All annotations are omitted from the exported/downloaded PDF from the viewer.
9696
- isPrint on an individual annotation: Use this when you only want to exclude a particular annotation from printing while leaving others printable.
9797

98-
[View Sample on GitHub](https://github.com/SyncfusionExamples/typescript-pdf-viewer-examples/tree/master)
98+
[View Sample on GitHub](https://github.com/SyncfusionExamples/typescript-pdf-viewer-examples/tree/master)
99+
100+
## See also
101+
102+
- [Annotation Overview](../overview)
103+
- [Annotation Types](../annotations/annotation-types/area-annotation)
104+
- [Annotation Toolbar](../toolbar-customization/annotation-toolbar)
105+
- [Create and Modify Annotation](../annotations/create-modify-annotation)
106+
- [Customize Annotation](../annotations/customize-annotation)
107+
- [Remove Annotation](../annotations/delete-annotation)
108+
- [Handwritten Signature](../annotations/signature-annotation)
109+
- [Export and Import Annotation](../annotations/export-import/export-annotation)
110+
- [Annotation in Mobile View](../annotations/annotations-in-mobile-view)
111+
- [Annotation Events](../annotations/annotation-event)
112+
- [Annotation API](../annotations/annotations-api)

Document-Processing/PDF/PDF-Viewer/javascript-es6/annotations/annotation-types/Squiggly-annotation.md

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -321,3 +321,16 @@ pdfviewer.appendTo('#PdfViewer');
321321
{% endtabs %}
322322

323323
[View Sample on GitHub](https://github.com/SyncfusionExamples/typescript-pdf-viewer-examples/tree/master)
324+
325+
## See also
326+
327+
- [Annotation Overview](../overview)
328+
- [Annotation Toolbar](../../toolbar-customization/annotation-toolbar)
329+
- [Create and Modify Annotation](../../annotations/create-modify-annotation)
330+
- [Customize Annotation](../../annotations/customize-annotation)
331+
- [Remove Annotation](../../annotations/delete-annotation)
332+
- [Handwritten Signature](../../annotations/signature-annotation)
333+
- [Export and Import Annotation](../../annotations/export-import/export-annotation)
334+
- [Annotation in Mobile View](../../annotations/annotations-in-mobile-view)
335+
- [Annotation Events](../../annotations/annotation-event)
336+
- [Annotation API](../../annotations/annotations-api)

Document-Processing/PDF/PDF-Viewer/javascript-es6/annotations/annotation-types/area-annotation.md

Lines changed: 14 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -314,4 +314,17 @@ pdfviewer.appendTo('#PdfViewer');
314314
{% endhighlight %}
315315
{% endtabs %}
316316

317-
[View Sample on GitHub](https://github.com/SyncfusionExamples/typescript-pdf-viewer-examples/tree/master)
317+
[View Sample on GitHub](https://github.com/SyncfusionExamples/typescript-pdf-viewer-examples/tree/master)
318+
319+
## See also
320+
321+
- [Annotation Overview](../overview)
322+
- [Annotation Toolbar](../../toolbar-customization/annotation-toolbar)
323+
- [Create and Modify Annotation](../../annotations/create-modify-annotation)
324+
- [Customize Annotation](../../annotations/customize-annotation)
325+
- [Remove Annotation](../../annotations/delete-annotation)
326+
- [Handwritten Signature](../../annotations/signature-annotation)
327+
- [Export and Import Annotation](../../annotations/export-import/export-annotation)
328+
- [Annotation in Mobile View](../../annotations/annotations-in-mobile-view)
329+
- [Annotation Events](../../annotations/annotation-event)
330+
- [Annotation API](../../annotations/annotations-api)

Document-Processing/PDF/PDF-Viewer/javascript-es6/annotations/annotation-types/arrow-annotation.md

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -250,3 +250,16 @@ pdfviewer.appendTo('#PdfViewer');
250250
N> In both [Arrow](https://ej2.syncfusion.com/react/documentation/api/pdfviewer/index-default#arrowsettings) and [Line](https://ej2.syncfusion.com/react/documentation/api/pdfviewer/index-default#linesettings) annotations Settings, the Fill Color option is available only when an arrowhead style is applied at the Start or End. If both Start and End arrowhead styles are set to None, lines do not support fill rendering and the Fill Color option remains disabled.
251251

252252
[View Sample on GitHub](https://github.com/SyncfusionExamples/typescript-pdf-viewer-examples/tree/master)
253+
254+
## See also
255+
256+
- [Annotation Overview](../overview)
257+
- [Annotation Toolbar](../../toolbar-customization/annotation-toolbar)
258+
- [Create and Modify Annotation](../../annotations/create-modify-annotation)
259+
- [Customize Annotation](../../annotations/customize-annotation)
260+
- [Remove Annotation](../../annotations/delete-annotation)
261+
- [Handwritten Signature](../../annotations/signature-annotation)
262+
- [Export and Import Annotation](../../annotations/export-import/export-annotation)
263+
- [Annotation in Mobile View](../../annotations/annotations-in-mobile-view)
264+
- [Annotation Events](../../annotations/annotation-event)
265+
- [Annotation API](../../annotations/annotations-api)

Document-Processing/PDF/PDF-Viewer/javascript-es6/annotations/annotation-types/circle-annotation.md

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -254,3 +254,16 @@ pdfviewer.appendTo('#PdfViewer');
254254
{% endtabs %}
255255

256256
[View Sample on GitHub](https://github.com/SyncfusionExamples/typescript-pdf-viewer-examples/tree/master)
257+
258+
## See also
259+
260+
- [Annotation Overview](../overview)
261+
- [Annotation Toolbar](../../toolbar-customization/annotation-toolbar)
262+
- [Create and Modify Annotation](../../annotations/create-modify-annotation)
263+
- [Customize Annotation](../../annotations/customize-annotation)
264+
- [Remove Annotation](../../annotations/delete-annotation)
265+
- [Handwritten Signature](../../annotations/signature-annotation)
266+
- [Export and Import Annotation](../../annotations/export-import/export-annotation)
267+
- [Annotation in Mobile View](../../annotations/annotations-in-mobile-view)
268+
- [Annotation Events](../../annotations/annotation-event)
269+
- [Annotation API](../../annotations/annotations-api)

Document-Processing/PDF/PDF-Viewer/javascript-es6/annotations/annotation-types/distance-annotation.md

Lines changed: 14 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -287,4 +287,17 @@ pdfviewer.appendTo('#PdfViewer');
287287
{% endhighlight %}
288288
{% endtabs %}
289289

290-
[View Sample on GitHub](https://github.com/SyncfusionExamples/typescript-pdf-viewer-examples/tree/master)
290+
[View Sample on GitHub](https://github.com/SyncfusionExamples/typescript-pdf-viewer-examples/tree/master)
291+
292+
## See also
293+
294+
- [Annotation Overview](../overview)
295+
- [Annotation Toolbar](../../toolbar-customization/annotation-toolbar)
296+
- [Create and Modify Annotation](../../annotations/create-modify-annotation)
297+
- [Customize Annotation](../../annotations/customize-annotation)
298+
- [Remove Annotation](../../annotations/delete-annotation)
299+
- [Handwritten Signature](../../annotations/signature-annotation)
300+
- [Export and Import Annotation](../../annotations/export-import/export-annotation)
301+
- [Annotation in Mobile View](../../annotations/annotations-in-mobile-view)
302+
- [Annotation Events](../../annotations/annotation-event)
303+
- [Annotation API](../../annotations/annotations-api)

Document-Processing/PDF/PDF-Viewer/javascript-es6/annotations/annotation-types/free-text-annotation.md

Lines changed: 14 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -284,4 +284,17 @@ pdfviewer.appendTo('#PdfViewer');
284284
{% endhighlight %}
285285
{% endtabs %}
286286

287-
[View Sample on GitHub](https://github.com/SyncfusionExamples/typescript-pdf-viewer-examples/tree/master)
287+
[View Sample on GitHub](https://github.com/SyncfusionExamples/typescript-pdf-viewer-examples/tree/master)
288+
289+
## See also
290+
291+
- [Annotation Overview](../overview)
292+
- [Annotation Toolbar](../../toolbar-customization/annotation-toolbar)
293+
- [Create and Modify Annotation](../../annotations/create-modify-annotation)
294+
- [Customize Annotation](../../annotations/customize-annotation)
295+
- [Remove Annotation](../../annotations/delete-annotation)
296+
- [Handwritten Signature](../../annotations/signature-annotation)
297+
- [Export and Import Annotation](../../annotations/export-import/export-annotation)
298+
- [Annotation in Mobile View](../../annotations/annotations-in-mobile-view)
299+
- [Annotation Events](../../annotations/annotation-event)
300+
- [Annotation API](../../annotations/annotations-api)

Document-Processing/PDF/PDF-Viewer/javascript-es6/annotations/annotation-types/highlight-annotation.md

Lines changed: 14 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -351,4 +351,17 @@ pdfviewer.appendTo('#PdfViewer');
351351
{% endhighlight %}
352352
{% endtabs %}
353353

354-
[View Sample on GitHub](https://github.com/SyncfusionExamples/typescript-pdf-viewer-examples/tree/master)
354+
[View Sample on GitHub](https://github.com/SyncfusionExamples/typescript-pdf-viewer-examples/tree/master)
355+
356+
## See also
357+
358+
- [Annotation Overview](../overview)
359+
- [Annotation Toolbar](../../toolbar-customization/annotation-toolbar)
360+
- [Create and Modify Annotation](../../annotations/create-modify-annotation)
361+
- [Customize Annotation](../../annotations/customize-annotation)
362+
- [Remove Annotation](../../annotations/delete-annotation)
363+
- [Handwritten Signature](../../annotations/signature-annotation)
364+
- [Export and Import Annotation](../../annotations/export-import/export-annotation)
365+
- [Annotation in Mobile View](../../annotations/annotations-in-mobile-view)
366+
- [Annotation Events](../../annotations/annotation-event)
367+
- [Annotation API](../../annotations/annotations-api)

0 commit comments

Comments
 (0)