-
Notifications
You must be signed in to change notification settings - Fork 13
Expand file tree
/
Copy pathDocument-Processing-toc.html
More file actions
8014 lines (8012 loc) · 610 KB
/
Document-Processing-toc.html
File metadata and controls
8014 lines (8012 loc) · 610 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<?xml version="1.0" encoding="utf-8"?>
<ul class="treeview">
<li>
<a href="/cr/document-processing" target="_blank">API Reference</a>
</li>
<li>
<a href="/document-processing/introduction">Introduction</a>
</li>
<li>
<a href="/document-processing/System-Requirements">System Requirements</a>
</li>
<li>AI Coding Assistant
<ul>
<li>
<a href="/document-processing/ai-coding-assistant/overview">Overview</a>
</li>
<li>MCP Server
<ul>
<li>
<a href="/document-processing/ai-coding-assistant/mcp-server/documentsdk">Document SDK</a>
</li>
<li>
<a href="/document-processing/ai-coding-assistant/mcp-server/spreadsheeteditorsdk">Spreadsheet Editor SDK</a>
</li>
<li>
<a href="/document-processing/ai-coding-assistant/mcp-server/pdfviewersdk">PDF Viewer SDK</a>
</li>
</ul>
</li>
<li>
<a href="/document-processing/ai-coding-assistant/prompt-library">Prompt Library</a>
</li>
</ul>
</li>
<li>Installation<ul>
<li>Web Installer
<ul>
<li>
<a href="/document-processing/installation/web-installer/how-to-download">How to Download?</a>
</li>
<li>
<a href="/document-processing/installation/web-installer/how-to-install">How to Install?</a>
</li>
</ul>
</li>
<li>Offline Installer
<ul>
<li>
<a href="/document-processing/installation/offline-installer/how-to-download">How to Download?</a>
</li>
<li>
<a href="/document-processing/installation/offline-installer/how-to-install">How to Install?</a>
</li>
</ul>
</li>
<li>Mac Installer
<ul>
<li>
<a href="/document-processing/installation/mac-installer/how-to-download">How to Download?</a>
</li>
<li>
<a href="/document-processing/installation/mac-installer/how-to-install">How to Install?</a>
</li>
</ul>
</li>
<li>
<a href="/document-processing/installation/installation-errors">Installation Errors</a>
</li>
</ul>
</li>
<li>Upgrade
<ul>
<li>
<a href="/document-processing/upgrade/how-to-upgrade">How to Upgrade Syncfusion FileFormats Installer to Latest Version?</a>
</li>
</ul>
</li>
<li>Licensing
<ul>
<li>
<a href="/document-processing/licensing/overview">Overview</a>
</li>
<li>
<a href="/document-processing/licensing/how-to-generate">How to Generate Syncfusion FileFormats License Key?</a>
</li>
<li>
<a href="/document-processing/licensing/how-to-register-in-an-application">How to Register Syncfusion License Key in FileFormats Application?</a>
</li>
<li>
<a href="/document-processing/licensing/licensing-faq/CI-license-validation">How to Validate Syncfusion License Key In CI Services?</a>
</li>
<li>
<a href="/document-processing/licensing/licensing-errors">Licensing Errors</a>
</li>
<li>Licensing FAQ
<ul>
<li>
<a href="/document-processing/licensing/licensing-faq/Is-an-internet-connection-required-for-Syncfusion-Essential-Studio-license-validation">Is an internet connection required for Syncfusion Essential Studio license validation?</a>
</li>
<li>
<a href="/document-processing/licensing/licensing-faq/how-to-upgrade-from-trial-version-after-purchasing-a-license">How to upgrade from Trial version after purchasing a license?</a>
</li>
<li>
<a href="/document-processing/licensing/licensing-faq/where-can-i-get-a-license-key">Where can I get a license key?</a>
</li>
<li>
<a href="/document-processing/licensing/licensing-faq/registering-syncfusion-account-for-nuget-org-user">Registering Syncfusion account for direct NuGet.org user</a>
</li>
</ul>
</li>
</ul>
</li>
<li>
<a href="/document-processing/nuget-packages">NuGet Packages</a>
</li>
<li>
<a href="/document-processing/DataExtraction/overview">DataExtraction</a>
<ul>
<li>
<a href="/document-processing/DataExtraction/overview">NET</a>
<ul>
<li>
<a href="/document-processing/DataExtraction/SmartDataExtractor/NET/overview">DataExtractor</a>
<ul>
<li>
<a href="/document-processing/DataExtraction/SmartDataExtractor/NET/Assemblies-Required">Assemblies Required</a>
</li>
<li>
<a href="/document-processing/DataExtraction/SmartDataExtractor/NET/NuGet-Packages-Required">NuGet Packages Required</a>
</li>
<li>
<a href="/document-processing/DataExtraction/SmartDataExtractor/NET/Features">Features</a>
</li>
<li>
<a href="/document-processing/DataExtraction/SmartDataExtractor/NET/FAQ">FAQ</a>
<ul>
<li>
<a href="/document-processing/DataExtraction/SmartDataExtractor/NET/FAQ/how-to-resolve-the-onnx-file-missing-error-in-smart-data-extractor">How to resolve the “ONNX file missing” error</a>
</li>
</ul>
</li>
</ul>
</li>
</ul>
<ul>
<li>
<a href="/document-processing/DataExtraction/SmartTableExtractor/NET/overview">TableExtractor</a>
<ul>
<li>
<a href="/document-processing/DataExtraction/SmartTableExtractor/NET/Assemblies-Required">Assemblies Required</a>
</li>
<li>
<a href="/document-processing/DataExtraction/SmartTableExtractor/NET/NuGet-Packages-Required">NuGet Packages Required</a>
</li>
<li>
<a href="/document-processing/DataExtraction/SmartTableExtractor/NET/Features">Features</a>
</li>
<li>
<a href="/document-processing/DataExtraction/SmartTableExtractor/NET/FAQ">FAQ</a>
<ul>
<li>
<a href="/document-processing/DataExtraction/SmartTableExtractor/NET/FAQ/how-to-resolve-the-onnx-file-missing-error-in-smart-table-extractor">How to resolve the “ONNX file missing” error</a>
</li>
</ul>
</li>
</ul>
</li>
</ul>
</li>
</ul>
</li>
<li>
<a href="/document-processing/pdf/overview">PDF</a>
<ul>
<li>
<a href="/document-processing/pdf/pdf-viewer/overview">PDF Viewer</a>
<ul>
<li>
<a href="/document-processing/pdf/pdf-viewer/asp-net-core/overview">ASP.NET Core</a>
<ul>
<li>Getting Started
<ul>
<li><a href="/document-processing/pdf/pdf-viewer/asp-net-core/getting-started">with Standalone PDF Viewer</a></li>
<li><a href="/document-processing/pdf/pdf-viewer/asp-net-core/getting-started-with-server-backed">with Server-Backed PDF Viewer</a></li>
</ul>
</li>
<li><a href="/document-processing/pdf/pdf-viewer/asp-net-core/feature-module">Feature Modules</a></li>
<li>
Open PDF files
<ul>
<li><a href="/document-processing/pdf/pdf-viewer/asp-net-core/open-pdf-file/from-azure-blob-storage">From Azure Blob Storage</a></li>
<li><a href="/document-processing/pdf/pdf-viewer/asp-net-core/open-pdf-file/from-google-drive">From Google Drive</a></li>
<li><a href="/document-processing/pdf/pdf-viewer/asp-net-core/open-pdf-file/from-box-cloud-file-storage">From Box cloud file storage</a></li>
<li><a href="/document-processing/pdf/pdf-viewer/asp-net-core/open-pdf-file/from-amazon-s3">From AWS S3</a></li>
<li><a href="/document-processing/pdf/pdf-viewer/asp-net-core/open-pdf-file/from-google-cloud-storage">Google Cloud Storage</a></li>
<li><a href="/document-processing/pdf/pdf-viewer/asp-net-core/open-pdf-file/from-azure-active-directory">From Azure Active Directory</a></li>
</ul>
</li>
<li>
Save PDF files
<ul>
<li><a href="/document-processing/pdf/pdf-viewer/asp-net-core/save-pdf-file/to-azure-blob-storage">To Azure Blob Storage</a></li>
<li><a href="/document-processing/pdf/pdf-viewer/asp-net-core/save-pdf-file/to-google-drive">To Google Drive</a></li>
<li><a href="/document-processing/pdf/pdf-viewer/asp-net-core/save-pdf-file/to-box-cloud-file-storage">To Box cloud file storage</a></li>
<li><a href="/document-processing/pdf/pdf-viewer/asp-net-core/save-pdf-file/to-amazon-s3">To AWS S3</a></li>
<li><a href="/document-processing/pdf/pdf-viewer/asp-net-core/save-pdf-file/to-google-cloud-storage">Google Cloud Storage</a></li>
<li><a href="/document-processing/pdf/pdf-viewer/asp-net-core/save-pdf-file/to-azure-active-directory">To Azure Active Directory</a></li>
</ul>
</li>
<li><a href="/document-processing/pdf/pdf-viewer/asp-net-core/toolbar">Toolbar Customization</a>
<ul>
<li><a href="/document-processing/pdf/pdf-viewer/asp-net-core/toolbar-customization/primary-toolbar">Primary Toolbar</a></li>
<li><a href="/document-processing/pdf/pdf-viewer/asp-net-core/toolbar-customization/annotation-toolbar">Annotation Toolbar</a></li>
<li><a href="/document-processing/pdf/pdf-viewer/asp-net-core/toolbar-customization/form-designer-toolbar">Form Designer Toolbar</a></li>
<li><a href="/document-processing/pdf/pdf-viewer/asp-net-core/organize-pages/toolbar">Organize Page Toolbar</a></li>
<li><a href="/document-processing/pdf/pdf-viewer/asp-net-core/toolbar-customization/mobile-toolbar">Mobile Toolbar</a></li>
<li><a href="/document-processing/pdf/pdf-viewer/asp-net-core/toolbar-customization/custom-toolbar">Custom Toolbar</a></li>
</ul>
</li>
<li><a href="/document-processing/pdf/pdf-viewer/asp-net-core/navigation">Interactive PDF Navigation</a>
<ul>
<li><a href="/document-processing/pdf/pdf-viewer/asp-net-core/interactive-pdf-navigation/page">Page Navigation</a></li>
<li><a href="/document-processing/pdf/pdf-viewer/asp-net-core/interactive-pdf-navigation/bookmark">Bookmark Navigation</a></li>
<li><a href="/document-processing/pdf/pdf-viewer/asp-net-core/interactive-pdf-navigation/page-thumbnail">Page Thumbnail Navigation</a></li>
<li><a href="/document-processing/pdf/pdf-viewer/asp-net-core/interactive-pdf-navigation/hyperlink">Hyperlink Navigation</a></li>
</ul>
</li>
<li><a href="/document-processing/pdf/pdf-viewer/asp-net-core/accessibility">Accessibility</a></li>
<li><a href="/document-processing/pdf/pdf-viewer/asp-net-core/magnification">Magnification</a></li>
<li><a href="/document-processing/pdf/pdf-viewer/asp-net-core/text-search">Text Search</a></li>
<li>Annotation
<ul>
<li><a href="/document-processing/pdf/pdf-viewer/asp-net-core/annotation/text-markup-annotation">Text Markup Annotation</a></li>
<li><a href="/document-processing/pdf/pdf-viewer/asp-net-core/annotation/shape-annotation">Shape Annotation</a></li>
<li><a href="/document-processing/pdf/pdf-viewer/asp-net-core/annotation/stamp-annotation">Stamp Annotation</a></li>
<li><a href="/document-processing/pdf/pdf-viewer/asp-net-core/annotation/sticky-notes-annotation">Sticky Notes Annotation</a></li>
<li><a href="/document-processing/pdf/pdf-viewer/asp-net-core/annotation/measurement-annotation">Measurement Annotation</a></li>
<li><a href="/document-processing/pdf/pdf-viewer/asp-net-core/annotation/free-text-annotation">Free Text Annotation</a></li>
<li><a href="/document-processing/pdf/pdf-viewer/asp-net-core/annotation/comments">Comments</a></li>
<li><a href="/document-processing/pdf/pdf-viewer/asp-net-core/annotation/ink-annotation">Ink Annotation</a></li>
<li><a href="/document-processing/pdf/pdf-viewer/asp-net-core/annotation/line-angle-constraints">Line Angle Constraint</a></li>
<li><a href="/document-processing/pdf/pdf-viewer/asp-net-core/annotation/signature-annotation">Handwritten signature</a></li>
<li><a href="/document-processing/pdf/pdf-viewer/asp-net-core/annotation/annotation-event">Annotations Events</a></li>
<li><a href="/document-processing/pdf/pdf-viewer/asp-net-core/annotation/annotations-in-mobile-view">Annotations in Mobile view</a></li>
</ul>
</li>
<li>Redaction
<ul>
<li><a href="/document-processing/pdf/pdf-viewer/asp-net-core/Redaction/overview">Overview</a></li>
<li><a href="/document-processing/pdf/pdf-viewer/asp-net-core/Redaction/ui-interaction">UI Interactions</a></li>
<li><a href="/document-processing/pdf/pdf-viewer/asp-net-core/Redaction/programmatic-support">Programmatic Support</a></li>
<li><a href="/document-processing/pdf/pdf-viewer/asp-net-core/Redaction/toolbar">Toolbar</a></li>
<li><a href="/document-processing/pdf/pdf-viewer/asp-net-core/Redaction/mobile-view">Mobile View</a></li>
<li><a href="/document-processing/pdf/pdf-viewer/asp-net-core/Redaction/search-redact">Search Text and Redact</a></li>
</ul>
</li>
<li><a href="/document-processing/pdf/pdf-viewer/asp-net-core/interaction-mode">Interaction Mode</a></li>
<li>Forms
<ul>
<li><a href="/document-processing/pdf/pdf-viewer/asp-net-core/forms/overview">Overview</a></li>
<li><a href="/document-processing/pdf/pdf-viewer/asp-net-core/forms/form-filling">Fill form fields</a></li>
<li><a href="/document-processing/pdf/pdf-viewer/asp-net-core/forms/form-designer">Form Designer and Toolbar</a></li>
<li><a href="/document-processing/pdf/pdf-viewer/asp-net-core/forms/overview-create-forms">Create, Edit, Style and Remove Form Fields</a>
<ul>
<li><a href="/document-processing/pdf/pdf-viewer/asp-net-core/forms/manage-form-fields/create-form-fields">Create form fields</a></li>
<li><a href="/document-processing/pdf/pdf-viewer/asp-net-core/forms/manage-form-fields/modify-form-fields">Modify form fields</a></li>
<li><a href="/document-processing/pdf/pdf-viewer/asp-net-core/forms/manage-form-fields/customize-form-fields">Customize form fields</a></li>
<li><a href="/document-processing/pdf/pdf-viewer/asp-net-core/forms/manage-form-fields/move-resize-form-fields">Move and Resize form fields</a></li>
<li><a href="/document-processing/pdf/pdf-viewer/asp-net-core/forms/manage-form-fields/remove-form-fields">Remove form fields</a></li>
</ul>
</li>
<li>Import/Export form data
<ul>
<li><a href="/document-processing/pdf/pdf-viewer/asp-net-core/forms/import-export-form-fields/import-form-fields">Import form data</a></li>
<li><a href="/document-processing/pdf/pdf-viewer/asp-net-core/forms/import-export-form-fields/export-form-fields">Export form data</a></li>
<li><a href="/document-processing/pdf/pdf-viewer/asp-net-core/forms/import-export-form-fields/import-export-events">Import/Export events</a></li>
</ul>
</li>
<li><a href="/document-processing/pdf/pdf-viewer/asp-net-core/forms/custom-data">Add custom data in form fields</a></li>
<li><a href="/document-processing/pdf/pdf-viewer/asp-net-core/forms/group-form-fields">Grouping form fields</a></li>
<li><a href="/document-processing/pdf/pdf-viewer/asp-net-core/forms/form-constrain">Form Field Flags</a></li>
<li><a href="/document-processing/pdf/pdf-viewer/asp-net-core/forms/form-validation">Form Validation</a></li>
<li><a href="/document-processing/pdf/pdf-viewer/asp-net-core/how-to/custom-fonts">Custom fonts</a></li>
<li><a href="/document-processing/pdf/pdf-viewer/asp-net-core/forms/form-field-events">Form Field events</a></li>
<li><a href="/document-processing/pdf/pdf-viewer/asp-net-core/forms/form-fields-api">APIs</a></li>
</ul>
</li>
<li><a href="/document-processing/pdf/pdf-viewer/asp-net-core/organize-pdf">Organize Pages</a>
<ul>
<li><a href="/document-processing/pdf/pdf-viewer/asp-net-core/organize-pages/overview">Overview</a></li>
<li><a href="/document-processing/pdf/pdf-viewer/asp-net-core/organize-pages/programmatic-support">Programmatic Support for Organize Page</a></li>
<li><a href="/document-processing/pdf/pdf-viewer/asp-net-core/organize-pages/ui-interactions">UI Interactions in Organize Page</a></li>
<li><a href="/document-processing/pdf/pdf-viewer/asp-net-core/organize-pages/toolbar">Toolbar</a></li>
<li><a href="/document-processing/pdf/pdf-viewer/asp-net-core/organize-pages/extract-pages">Extract Pages</a></li>
<li><a href="/document-processing/pdf/pdf-viewer/asp-net-core/organize-pages/mobile-view">Organize Page in Mobile View</a></li>
<li><a href="/document-processing/pdf/pdf-viewer/asp-net-core/organize-pages/events">Events in Organize Page</a></li>
</ul>
</li>
<li><a href="/document-processing/pdf/pdf-viewer/asp-net-core/print">Print</a></li>
<li><a href="/document-processing/pdf/pdf-viewer/asp-net-core/download">Download</a></li>
<li><a href="/document-processing/pdf/pdf-viewer/asp-net-core/event">Event</a></li>
<li><a href="/document-processing/pdf/pdf-viewer/asp-net-core/textselection">Text Selection</a></li>
<li><a href="/document-processing/pdf/pdf-viewer/asp-net-core/globalization">Globalization</a></li>
<li><a href="/document-processing/pdf/pdf-viewer/asp-net-core/server-actions">Server Actions</a></li>
<li><a href="/document-processing/pdf/pdf-viewer/asp-net-core/how-to-overview">How To</a>
<ul>
<li><a href="/document-processing/pdf/pdf-viewer/asp-net-core/how-to/export-as-image">Export as Image</a></li>
<li><a href="/document-processing/pdf/pdf-viewer/asp-net-core/how-to/extract-text">Extract Text</a></li>
<li><a href="/document-processing/pdf/pdf-viewer/asp-net-core/how-to/install-packages">Install packages based on OS</a></li>
<li><a href="/document-processing/pdf/pdf-viewer/asp-net-core/how-to/save-original-document-at-the-server-side">Save original document at the server side</a></li>
<li><a href="/document-processing/pdf/pdf-viewer/asp-net-core/how-to/delete-a-specific-annotation">Delete a specific annotation</a></li>
<li><a href="/document-processing/pdf/pdf-viewer/asp-net-core/how-to/unload-document">Unload the PDF document Programmatically</a></li>
<li><a href="/document-processing/pdf/pdf-viewer/asp-net-core/how-to/extract-text-using-text-collections">Extract Text using TextLineCollection</a></li>
<li><a href="/document-processing/pdf/pdf-viewer/asp-net-core/how-to/capture-page-number">Capture the current page number being viewed</a></li>
<li><a href="/document-processing/pdf/pdf-viewer/asp-net-core/how-to/display-document-without-downloading">Display document without downloading</a></li>
<li><a href="/document-processing/pdf/pdf-viewer/asp-net-core/how-to/add-save-button">Add save button</a></li>
<li><a href="/document-processing/pdf/pdf-viewer/asp-net-core/how-to/show-bookmark">Show Bookmark</a></li>
<li><a href="/document-processing/pdf/pdf-viewer/asp-net-core/how-to/load-documents">Load the PDF documents dynamically</a></li>
<li><a href="/document-processing/pdf/pdf-viewer/asp-net-core/how-to/import-export-annotation">Import and Export annotation</a></li>
<li><a href="/document-processing/pdf/pdf-viewer/asp-net-core/how-to/authorization-token">Include the Authorization token</a></li>
<li><a href="/document-processing/pdf/pdf-viewer/asp-net-core/how-to/open-thumbnail">Open Thumbnail pane programmatically</a></li>
<li><a href="/document-processing/pdf/pdf-viewer/asp-net-core/how-to/resolve-pdfium-issue">Resolve the Pdfium issue</a></li>
<li><a href="/document-processing/pdf/pdf-viewer/asp-net-core/how-to/instantiate-pdfviewer-dynamically">Instantiate the PDF Viewer component dynamically</a></li>
<li><a href="/document-processing/pdf/pdf-viewer/asp-net-core/how-to/resolve-Unable-to-find-an-entry-point-error">Resolve unable to find an entry point named FPDFText_GetCharAngle error</a></li>
<li><a href="/document-processing/pdf/pdf-viewer/asp-net-core/how-to/webservice-not-listening">How to clear the Web service not listening error</a></li>
<li><a href="/document-processing/pdf/pdf-viewer/asp-net-core/how-to/load-n-number-page">Load N number of pages on initial loading</a></li>
<li><a href="/document-processing/pdf/pdf-viewer/asp-net-core/how-to/retry-timeout">Retry Timeout</a></li>
<li><a href="/document-processing/pdf/pdf-viewer/asp-net-core/how-to/custom-context-menu">Customize context menu</a></li>
<li><a href="/document-processing/pdf/pdf-viewer/asp-net-core/how-to/open-bookmark">Open and Close Bookmark pane</a></li>
<li><a href="/document-processing/pdf/pdf-viewer/asp-net-core/how-to/pagerenderstarted-pagerendercompleted">PageRenderInitiate and PageRenderComplete event</a></li>
<li><a href="/document-processing/pdf/pdf-viewer/asp-net-core/how-to/signatureselect-signatureunselect">SignatureSelect and SignatureUnselect event</a></li>
<li><a href="/document-processing/pdf/pdf-viewer/asp-net-core/how-to/download-start-event">Controlling File Downloads</a></li>
<li><a href="/document-processing/pdf/pdf-viewer/asp-net-core/how-to/min-max-zoom">Minimum and Maximum Zoom Properties</a></li>
<li><a href="/document-processing/pdf/pdf-viewer/asp-net-core/how-to/control-annotation-visibility">Control Annotation Visibility</a></li>
<li><a href="/document-processing/pdf/pdf-viewer/asp-net-core/how-to/custom-font-signature-field">Custom fonts for Signature and Initial fields</a></li>
<li><a href="/document-processing/pdf/pdf-viewer/asp-net-core/how-to/restricting-zoom-in-mobile-mode">Restrict Zoom Percentage on Mobile Devices</a></li>
<li><a href="/document-processing/pdf/pdf-viewer/asp-net-core/how-to/restricting-zoom-in-mobile-mode">Restrict Zoom Percentage on Mobile Devices</a></li>
<li><a href="/document-processing/pdf/pdf-viewer/asp-net-core/how-to/export-as-image-standalone">Export As Image from PDF document</a></li>
<li><a href="/document-processing/pdf/pdf-viewer/asp-net-core/how-to/custom-fonts">Add custom fonts to the PDF Viewer using the PDF document</a></li>
<li><a href="/document-processing/pdf/pdf-viewer/asp-net-core/how-to/configure-annotation-selector-setting">Configuring Annotation Selector Setting</a></li>
<li><a href="/document-processing/pdf/pdf-viewer/asp-net-core/how-to/convert-pdf-library-bounds-to-pdf-viewer-bounds">Convert Pdf Library Bounds to Pdf viewer bounds</a></li>
<li><a href="/document-processing/pdf/pdf-viewer/asp-net-core/how-to/get-page-info">Get Page Info</a></li>
<li><a href="/document-processing/pdf/pdf-viewer/asp-net-core/how-to/show-custom-stamp-item">Display custom stamp Items in custom stamp</a></li>
<li><a href="/document-processing/pdf/pdf-viewer/asp-net-core/how-to/get-base64">Retrieve base64-encoded value of a loaded PDF document</a></li>
<li><a href="/document-processing/pdf/pdf-viewer/asp-net-core/how-to/enable-local-storage">Enable Local Storage</a></li>
<li><a href="/document-processing/pdf/pdf-viewer/asp-net-core/how-to/add-annotation-in-text-search">Add Rectangle Annotation using Search Text Bounds</a></li>
<li><a href="/document-processing/pdf/pdf-viewer/asp-net-core/how-to/extract-text-option">Extract Text Option</a></li>
<li><a href="/document-processing/pdf/pdf-viewer/asp-net-core/how-to/find-text-async">Find Text using findTextAsync</a></li>
<li><a href="/document-processing/pdf/pdf-viewer/asp-net-core/how-to/extract-text-completed">Extract Text Completed</a></li>
<li><a href="/document-processing/pdf/pdf-viewer/asp-net-core/how-to/enable-text-selection">Dynamically Enable or Disable Text Selection</a></li>
<li><a href="/document-processing/pdf/pdf-viewer/asp-net-core/how-to/show-hide-annotation">Show and Hide Annotations</a></li>
<li><a href="/document-processing/pdf/pdf-viewer/asp-net-core/how-to/customize-text-search-color">Customize Text Search Color</a></li>
<li><a href="/document-processing/pdf/pdf-viewer/asp-net-core/how-to/disable-context-menu">Enable Disable Context Menu</a></li>
<li><a href="/document-processing/pdf/pdf-viewer/asp-net-core/how-to/disable-tile-rendering">Enable Disable Tile Rendering</a></li>
<li><a href="/document-processing/pdf/pdf-viewer/asp-net-core/how-to/enable-resize">Enable Disable Resize</a></li>
<li><a href="/document-processing/pdf/pdf-viewer/asp-net-core/how-to/identify-added-annotation-mode">Identify Aded Annotation Mode</a></li>
<li><a href="/document-processing/pdf/pdf-viewer/asp-net-core/how-to/overlapped-annotation">Get the overlapped annotations on mouse click</a></li>
<li><a href="/document-processing/pdf/pdf-viewer/asp-net-core/how-to/print-document">Print the PDF document Programmatically</a></li>
<li><a href="/document-processing/pdf/pdf-viewer/asp-net-core/how-to/select-multi-page-annotations">Select multi-page TextMarkup annotation as single annotation</a></li>
<li><a href="/document-processing/pdf/pdf-viewer/asp-net-core/how-to/add-save-button">Add a Save button in the built-in Toolbar</a></li>
<li><a href="/document-processing/pdf/pdf-viewer/asp-net-core/how-to/load-document-after-resources-loaded">Load document after resources loaded</a></li>
</ul>
</li>
<li>Troubleshooting
<ul>
<li><a href="/document-processing/pdf/pdf-viewer/asp-net-core/troubleshooting/document-loading-issues">Document Loading Issues in Version 23.1 or Newer</a></li>
</ul>
</li>
<li>
<a href="/cr/aspnetcore-js2/Syncfusion.EJ2.PdfViewer.PdfViewer.html"> API Reference</a>
</li>
</ul>
</li>
<li>
<a href="/document-processing/pdf/pdf-viewer/asp-net-mvc/overview">ASP.NET MVC</a>
<ul>
<li>Getting Started
<ul>
<li><a href="/document-processing/pdf/pdf-viewer/asp-net-mvc/getting-started">with Standalone PDF Viewer</a></li>
<li><a href="/document-processing/pdf/pdf-viewer/asp-net-mvc/getting-started-with-server-backed">with Server-Backed PDF Viewer</a></li>
</ul>
</li>
<li><a href="/document-processing/pdf/pdf-viewer/asp-net-mvc/feature-module">Feature Modules</a></li>
<li>
Open PDF files
<ul>
<li><a href="/document-processing/pdf/pdf-viewer/asp-net-mvc/open-pdf-file/from-azure-blob-storage">From Azure Blob Storage</a></li>
<li><a href="/document-processing/pdf/pdf-viewer/asp-net-mvc/open-pdf-file/from-google-drive">From Google Drive</a></li>
<li><a href="/document-processing/pdf/pdf-viewer/asp-net-mvc/open-pdf-file/from-box-cloud-file-storage">From Box cloud file storage</a></li>
<li><a href="/document-processing/pdf/pdf-viewer/asp-net-mvc/open-pdf-file/from-amazon-s3">From AWS S3</a></li>
<li><a href="/document-processing/pdf/pdf-viewer/asp-net-mvc/open-pdf-file/from-google-cloud-storage">Google Cloud Storage</a></li>
<li><a href="/document-processing/pdf/pdf-viewer/asp-net-mvc/open-pdf-file/from-azure-active-directory">From Azure Active Directory</a></li>
</ul>
</li>
<li>
Save PDF files
<ul>
<li><a href="/document-processing/pdf/pdf-viewer/asp-net-mvc/save-pdf-file/to-azure-blob-storage">To Azure Blob Storage</a></li>
<li><a href="/document-processing/pdf/pdf-viewer/asp-net-mvc/save-pdf-file/to-google-drive">To Google Drive</a></li>
<li><a href="/document-processing/pdf/pdf-viewer/asp-net-mvc/save-pdf-file/to-box-cloud-file-storage">To Box cloud file storage</a></li>
<li><a href="/document-processing/pdf/pdf-viewer/asp-net-mvc/save-pdf-file/to-amazon-s3">To AWS S3</a></li>
<li><a href="/document-processing/pdf/pdf-viewer/asp-net-mvc/save-pdf-file/to-google-cloud-storage">Google Cloud Storage</a></li>
<li><a href="/document-processing/pdf/pdf-viewer/asp-net-mvc/save-pdf-file/to-azure-active-directory">To Azure Active Directory</a></li>
</ul>
</li>
<li><a href="/document-processing/pdf/pdf-viewer/asp-net-mvc/toolbar">Toolbar Customization</a>
<ul>
<li><a href="/document-processing/pdf/pdf-viewer/asp-net-mvc/toolbar-customization/primary-toolbar">Primary Toolbar</a></li>
<li><a href="/document-processing/pdf/pdf-viewer/asp-net-mvc/toolbar-customization/annotation-toolbar">Annotation Toolbar</a></li>
<li><a href="/document-processing/pdf/pdf-viewer/asp-net-mvc/toolbar-customization/form-designer-toolbar">Form Designer Toolbar</a></li>
<li><a href="/document-processing/pdf/pdf-viewer/asp-net-mvc/organize-pages/toolbar">Organize Page Toolbar</a></li>
<li><a href="/document-processing/pdf/pdf-viewer/asp-net-mvc/toolbar-customization/mobile-toolbar">Mobile Toolbar</a></li>
<li><a href="/document-processing/pdf/pdf-viewer/asp-net-mvc/toolbar-customization/custom-toolbar">Custom Toolbar</a></li>
</ul>
</li>
<li><a href="/document-processing/pdf/pdf-viewer/asp-net-mvc/navigation">Interactive PDF Navigation</a>
<ul>
<li><a href="/document-processing/pdf/pdf-viewer/asp-net-mvc/interactive-pdf-navigation/page">Page Navigation</a></li>
<li><a href="/document-processing/pdf/pdf-viewer/asp-net-mvc/interactive-pdf-navigation/bookmark">Bookmark Navigation</a></li>
<li><a href="/document-processing/pdf/pdf-viewer/asp-net-mvc/interactive-pdf-navigation/page-thumbnail">Page Thumbnail Navigation</a></li>
<li><a href="/document-processing/pdf/pdf-viewer/asp-net-mvc/interactive-pdf-navigation/hyperlink">Hyperlink Navigation</a></li>
</ul>
</li>
<li><a href="/document-processing/pdf/pdf-viewer/asp-net-mvc/accessibility">Accessibility</a></li>
<li><a href="/document-processing/pdf/pdf-viewer/asp-net-mvc/magnification">Magnification</a></li>
<li><a href="/document-processing/pdf/pdf-viewer/asp-net-mvc/text-search">Text Search</a></li>
<li>Annotation
<ul>
<li><a href="/document-processing/pdf/pdf-viewer/asp-net-mvc/annotation/text-markup-annotation">Text Markup Annotation</a></li>
<li><a href="/document-processing/pdf/pdf-viewer/asp-net-mvc/annotation/shape-annotation">Shape Annotation</a></li>
<li><a href="/document-processing/pdf/pdf-viewer/asp-net-mvc/annotation/stamp-annotation">Stamp Annotation</a></li>
<li><a href="/document-processing/pdf/pdf-viewer/asp-net-mvc/annotation/sticky-notes-annotation">Sticky Notes</a></li>
<li><a href="/document-processing/pdf/pdf-viewer/asp-net-mvc/annotation/measurement-annotation">Measurement Annotation</a></li>
<li><a href="/document-processing/pdf/pdf-viewer/asp-net-mvc/annotation/free-text-annotation">Free Text Annotation</a></li>
<li><a href="/document-processing/pdf/pdf-viewer/asp-net-mvc/annotation/comments">Comments</a></li>
<li><a href="/document-processing/pdf/pdf-viewer/asp-net-mvc/annotation/ink-annotation">Ink Annotation</a></li>
<li><a href="/document-processing/pdf/pdf-viewer/asp-net-mvc/annotation/line-angle-constraints">Line Angle Constraint</a></li>
<li><a href="/document-processing/pdf/pdf-viewer/asp-net-mvc/annotation/signature-annotation">Handwritten signature</a></li>
<li><a href="/document-processing/pdf/pdf-viewer/asp-net-mvc/annotation/annotation-event">Annotations Events</a></li>
<li><a href="/document-processing/pdf/pdf-viewer/asp-net-mvc/annotation/annotations-in-mobile-view">Annotations in Mobile view</a></li>
</ul>
</li>
<li>Redaction
<ul>
<li><a href="/document-processing/pdf/pdf-viewer/asp-net-mvc/Redaction/overview">Overview</a></li>
<li><a href="/document-processing/pdf/pdf-viewer/asp-net-mvc/Redaction/ui-interaction">UI Interactions</a></li>
<li><a href="/document-processing/pdf/pdf-viewer/asp-net-mvc/Redaction/programmatic-support">Programmatic Support</a></li>
<li><a href="/document-processing/pdf/pdf-viewer/asp-net-mvc/Redaction/toolbar">Toolbar</a></li>
<li><a href="/document-processing/pdf/pdf-viewer/asp-net-mvc/Redaction/mobile-view">Mobile View</a></li>
<li><a href="/document-processing/pdf/pdf-viewer/asp-net-mvc/Redaction/search-redact">Search Text and Redact</a></li>
</ul>
</li>
<li><a href="/document-processing/pdf/pdf-viewer/asp-net-mvc/interaction-mode">Interaction Mode</a></li>
<li>Forms
<ul>
<li><a href="/document-processing/pdf/pdf-viewer/asp-net-mvc/forms/overview">Overview</a></li>
<li><a href="/document-processing/pdf/pdf-viewer/asp-net-mvc/forms/form-filling">Fill form fields</a></li>
<li><a href="/document-processing/pdf/pdf-viewer/asp-net-mvc/forms/form-designer">Form Designer and Toolbar</a></li>
<li><a href="/document-processing/pdf/pdf-viewer/asp-net-mvc/forms/overview-create-forms">Create, Edit, Style and Remove Form Fields</a>
<ul>
<li><a href="/document-processing/pdf/pdf-viewer/asp-net-mvc/forms/manage-form-fields/create-form-fields">Create form fields</a></li>
<li><a href="/document-processing/pdf/pdf-viewer/asp-net-mvc/forms/manage-form-fields/modify-form-fields">Modify form fields</a></li>
<li><a href="/document-processing/pdf/pdf-viewer/asp-net-mvc/forms/manage-form-fields/customize-form-fields">Customize form fields</a></li>
<li><a href="/document-processing/pdf/pdf-viewer/asp-net-mvc/forms/manage-form-fields/move-resize-form-fields">Move and Resize form fields</a></li>
<li><a href="/document-processing/pdf/pdf-viewer/asp-net-mvc/forms/manage-form-fields/remove-form-fields">Remove form fields</a></li>
</ul>
</li>
<li>Import/Export form data
<ul>
<li><a href="/document-processing/pdf/pdf-viewer/asp-net-mvc/forms/import-export-form-fields/import-form-fields">Import form data</a></li>
<li><a href="/document-processing/pdf/pdf-viewer/asp-net-mvc/forms/import-export-form-fields/export-form-fields">Export form data</a></li>
<li><a href="/document-processing/pdf/pdf-viewer/asp-net-mvc/forms/import-export-form-fields/import-export-events">Import/Export events</a></li>
</ul>
</li>
<li><a href="/document-processing/pdf/pdf-viewer/asp-net-mvc/forms/custom-data">Add custom data in form fields</a></li>
<li><a href="/document-processing/pdf/pdf-viewer/asp-net-mvc/forms/group-form-fields">Grouping form fields</a></li>
<li><a href="/document-processing/pdf/pdf-viewer/asp-net-mvc/forms/form-constrain">Form Field Flags</a></li>
<li><a href="/document-processing/pdf/pdf-viewer/asp-net-mvc/forms/form-validation">Form Validation</a></li>
<li><a href="/document-processing/pdf/pdf-viewer/asp-net-mvc/how-to/custom-fonts">Custom fonts</a></li>
<li><a href="/document-processing/pdf/pdf-viewer/asp-net-mvc/forms/form-field-events">Form Field events</a></li>
<li><a href="/document-processing/pdf/pdf-viewer/asp-net-mvc/forms/form-fields-api">APIs</a></li>
</ul>
</li>
<li><a href="/document-processing/pdf/pdf-viewer/asp-net-mvc/organize-pdf">Organize Pages</a>
<ul>
<li><a href="/document-processing/pdf/pdf-viewer/asp-net-mvc/organize-pages/overview">Overview</a></li>
<li><a href="/document-processing/pdf/pdf-viewer/asp-net-mvc/organize-pages/programmatic-support">Programmatic Support</a></li>
<li><a href="/document-processing/pdf/pdf-viewer/asp-net-mvc/organize-pages/ui-interactions">UI Interactions</a></li>
<li><a href="/document-processing/pdf/pdf-viewer/asp-net-mvc/organize-pages/toolbar">Toolbar</a></li>
<li><a href="/document-processing/pdf/pdf-viewer/asp-net-mvc/organize-pages/extract-pages">Extract Pages</a></li>
<li><a href="/document-processing/pdf/pdf-viewer/asp-net-mvc/organize-pages/mobile-view">Mobile View</a></li>
<li><a href="/document-processing/pdf/pdf-viewer/asp-net-mvc/organize-pages/events">Events</a></li>
</ul>
</li>
<li><a href="/document-processing/pdf/pdf-viewer/asp-net-mvc/print">Print</a></li>
<li><a href="/document-processing/pdf/pdf-viewer/asp-net-mvc/download">Download</a></li>
<li><a href="/document-processing/pdf/pdf-viewer/asp-net-mvc/event">Event</a></li>
<li><a href="/document-processing/pdf/pdf-viewer/asp-net-mvc/globalization">Globalization</a></li>
<li><a href="/document-processing/pdf/pdf-viewer/asp-net-mvc/server-actions">Server Actions</a></li>
<li><a href="/document-processing/pdf/pdf-viewer/asp-net-mvc/how-to-overview">How To</a>
<ul>
<li><a href="/document-processing/pdf/pdf-viewer/asp-net-mvc/how-to/export-as-image">Export as Image</a></li>
<li><a href="/document-processing/pdf/pdf-viewer/asp-net-mvc/how-to/extract-text">Extract Text</a></li>
<li><a href="/document-processing/pdf/pdf-viewer/asp-net-mvc/how-to/delete-annotation">Delete a specific annotation</a></li>
<li><a href="/document-processing/pdf/pdf-viewer/asp-net-mvc/how-to/unload-document">Unload the PDF document Programmatically</a></li>
<li><a href="/document-processing/pdf/pdf-viewer/asp-net-mvc/how-to/set-author-name-to-annotation">Set author name to annotation</a></li>
<li><a href="/document-processing/pdf/pdf-viewer/asp-net-mvc/how-to/identify-the-loaded-document-is-edited">Identify the loaded document is edited</a></li>
<li><a href="/document-processing/pdf/pdf-viewer/asp-net-mvc/how-to/close-comment-panel">Close the comment panel</a></li>
<li><a href="/document-processing/pdf/pdf-viewer/asp-net-mvc/how-to/access-file-name">Access file name</a></li>
<li><a href="/document-processing/pdf/pdf-viewer/asp-net-mvc/how-to/include-the-authorization-token">Include the Authorization token</a></li>
<li><a href="/document-processing/pdf/pdf-viewer/asp-net-mvc/how-to/load-balancing-environment">Achieve Load balancing environment in MVC framework</a></li>
<li><a href="/document-processing/pdf/pdf-viewer/asp-net-mvc/how-to/extract-text-using-text-collection">Extract Text using TextLineCollection</a></li>
<li><a href="/document-processing/pdf/pdf-viewer/asp-net-mvc/how-to/load-the-document">Load the PDF document</a></li>
<li><a href="/document-processing/pdf/pdf-viewer/asp-net-mvc/how-to/show-notification-dialog">Show the notification dialog in UI When form fields are empty</a></li>
<li><a href="/document-processing/pdf/pdf-viewer/asp-net-mvc/how-to/load-documents">Load the PDF documents dynamically</a></li>
<li><a href="/document-processing/pdf/pdf-viewer/asp-net-mvc/how-to/import-export-annotation">Import and Export annotation</a></li>
<li><a href="/document-processing/pdf/pdf-viewer/asp-net-mvc/how-to/open-thumbnail">Open Thumbnail pane programmatically</a></li>
<li><a href="/document-processing/pdf/pdf-viewer/asp-net-mvc/how-to/redirect-to-home-page">Redirect to a home page after submittin PDF forms</a></li>
<li><a href="/document-processing/pdf/pdf-viewer/asp-net-mvc/how-to/resolve-pdfium-issue">Resolve the Pdfium issue</a></li>
<li><a href="/document-processing/pdf/pdf-viewer/asp-net-mvc/how-to/signature-date">How to add the date to the signature text</a></li>
<li><a href="/document-processing/pdf/pdf-viewer/asp-net-mvc/how-to/default-width-height">How to change the default width and height</a></li>
<li><a href="/document-processing/pdf/pdf-viewer/asp-net-mvc/how-to/resolve-Unable-to-find-an-entry-point-error">Resolve unable to find an entry point named FPDFText_GetCharAngle error</a></li>
<li><a href="/document-processing/pdf/pdf-viewer/asp-net-mvc/how-to/webservice-not-listening">How to clear the Web service not listening error</a></li>
<li><a href="/document-processing/pdf/pdf-viewer/asp-net-mvc/how-to/load-n-number-page">Load N number of pages on initial loading</a></li>
<li><a href="/document-processing/pdf/pdf-viewer/asp-net-mvc/how-to/retry-timeout">Retry Timeout</a></li>
<li><a href="/document-processing/pdf/pdf-viewer/asp-net-mvc/how-to/custom-context-menu">Customize context menu</a></li>
<li><a href="/document-processing/pdf/pdf-viewer/asp-net-mvc/how-to/open-bookmark">Open and Close Bookmark pane</a></li>
<li><a href="/document-processing/pdf/pdf-viewer/asp-net-mvc/how-to/pagerenderstarted-pagerendercompleted">PageRenderInitiate and PageRenderComplete event</a></li>
<li><a href="/document-processing/pdf/pdf-viewer/asp-net-mvc/how-to/signatureselect-signatureunselect">SignatureSelect and SignatureUnselect event</a></li>
<li><a href="/document-processing/pdf/pdf-viewer/asp-net-mvc/how-to/download-start-event">Controlling File Downloads</a></li>
<li><a href="/document-processing/pdf/pdf-viewer/asp-net-mvc/how-to/min-max-zoom">Minimum and Maximum Zoom Properties</a></li>
<li><a href="/document-processing/pdf/pdf-viewer/asp-net-mvc/how-to/restricting-zoom-in-mobile-mode">Restrict Zoom Percentage on Mobile Devices</a></li>
<li><a href="/document-processing/pdf/pdf-viewer/asp-net-mvc/how-to/export-as-image-standalone">Export As Image from PDF document</a></li>
<li><a href="/document-processing/pdf/pdf-viewer/asp-net-mvc/how-to/custom-fonts">Add custom fonts to the PDF Viewer using the PDF document</a></li>
<li><a href="/document-processing/pdf/pdf-viewer/asp-net-mvc/how-to/configure-annotation-selector-setting">Configuring Annotation Selector Setting</a></li>
<li><a href="/document-processing/pdf/pdf-viewer/asp-net-mvc/how-to/convert-pdf-library-bounds-to-pdf-viewer-bounds">Convert Pdf Library Bounds to Pdf viewer bounds</a></li>
<li><a href="/document-processing/pdf/pdf-viewer/asp-net-mvc/how-to/get-page-info">Get Page Info</a></li>
<li><a href="/document-processing/pdf/pdf-viewer/asp-net-mvc/how-to/show-custom-stamp-item">Display custom stamp items in custom stamp</a></li>
<li><a href="/document-processing/pdf/pdf-viewer/asp-net-mvc/how-to/get-base64">Retrieve base64-encoded value of a loaded PDF document</a></li>
<li><a href="/document-processing/pdf/pdf-viewer/asp-net-mvc/how-to/enable-local-storage">Enable Local Storage</a></li>
<li><a href="/document-processing/pdf/pdf-viewer/asp-net-mvc/how-to/add-annotation-in-text-search">Add Rectangle Annotation using Search Text Bounds</a></li>
<li><a href="/document-processing/pdf/pdf-viewer/asp-net-mvc/how-to/extract-text-option">Extract Text Option</a></li>
<li><a href="/document-processing/pdf/pdf-viewer/asp-net-mvc/how-to/find-text-async">Find Text using findTextAsync</a></li>
<li><a href="/document-processing/pdf/pdf-viewer/asp-net-mvc/how-to/extract-text-completed">Extract Text Completed</a></li>
<li><a href="/document-processing/pdf/pdf-viewer/asp-net-mvc/how-to/enable-text-selection">Dynamically Enable or Disable Text Selection</a></li>
<li><a href="/document-processing/pdf/pdf-viewer/asp-net-mvc/how-to/show-hide-annotation">Show and Hide Annotation</a></li>
<li><a href="/document-processing/pdf/pdf-viewer/asp-net-mvc/how-to/instantiate-pdfviewer-dynamically">Instantiate the PDF Viewer component dynamically</a></li>
<li><a href="/document-processing/pdf/pdf-viewer/asp-net-mvc/how-to/capture-page-number">Capture the current page number being viewed</a></li>
<li><a href="/document-processing/pdf/pdf-viewer/asp-net-mvc/how-to/customize-text-search-color">Customize Text Search Color</a></li>
<li><a href="/document-processing/pdf/pdf-viewer/asp-net-mvc/how-to/delete-a-specific-annotation">Delete a specific annotation</a></li>
<li><a href="/document-processing/pdf/pdf-viewer/asp-net-mvc/how-to/disable-context-menu">Enable Disable Context Menu</a></li>
<li><a href="/document-processing/pdf/pdf-viewer/asp-net-mvc/how-to/disable-tile-rendering">Enable Disable Tile Rendering</a></li>
<li><a href="/document-processing/pdf/pdf-viewer/asp-net-mvc/how-to/display-document-without-downloading">Display document without downloading</a></li>
<li><a href="/document-processing/pdf/pdf-viewer/asp-net-mvc/how-to/enable-resize">Enable Disable Resize</a></li>
<li><a href="/document-processing/pdf/pdf-viewer/asp-net-mvc/how-to/identify-added-annotation-mode">Identify Aded Annotation Mode</a></li>
<li><a href="/document-processing/pdf/pdf-viewer/asp-net-mvc/how-to/install-packages">Install packages based on OS</a></li>
<li><a href="/document-processing/pdf/pdf-viewer/asp-net-mvc/how-to/overlapped-annotation">Get the overlapped annotations on mouse click</a></li>
<li><a href="/document-processing/pdf/pdf-viewer/asp-net-mvc/how-to/print-document">Print the PDF document Programmatically</a></li>
<li><a href="/document-processing/pdf/pdf-viewer/asp-net-mvc/how-to/save-original-document-at-the-server-side">Save original document at the server side</a></li>
<li><a href="/document-processing/pdf/pdf-viewer/asp-net-mvc/how-to/select-multi-page-annotations">Select multi-page TextMarkup annotation as single annotation</a></li>
<li><a href="/document-processing/pdf/pdf-viewer/asp-net-mvc/how-to/show-bookmark">Show Bookmark</a></li>
<li><a href="/document-processing/pdf/pdf-viewer/asp-net-mvc/how-to/add-save-button">Add a Save button in the built-in Toolbar</a></li>
<li><a href="/document-processing/pdf/pdf-viewer/asp-net-mvc/how-to/load-document-after-resources-loaded">Load document after resources loaded</a></li>
</ul>
</li>
<li>Troubleshooting
<ul>
<li><a href="/document-processing/pdf/pdf-viewer/asp-net-mvc/troubleshooting/document-loading-issues">Document Loading Issues in Version 23.1 or Newer</a></li>
</ul>
</li>
<li>
<a href="/cr/aspnetmvc-js2/Syncfusion.EJ2.PdfViewer.PdfViewer.html"> API Reference</a>
</li>
</ul>
</li>
<li>
<a href="/document-processing/pdf/pdf-viewer/angular/overview">Angular</a>
<ul>
<li>Getting Started
<ul>
<li><a href="/document-processing/pdf/pdf-viewer/angular/getting-started">with Standalone PDF Viewer</a></li>
<li><a href="/document-processing/pdf/pdf-viewer/angular/getting-started-with-server-backed">with Server-Backed PDF Viewer</a></li>
</ul>
</li>
<li><a href="/document-processing/pdf/pdf-viewer/angular/feature-module">Feature Modules</a></li>
<li>
<a href="/document-processing/pdf/pdf-viewer/angular/open-pdf-files">Open PDF files</a>
<ul>
<li><a href="/document-processing/pdf/pdf-viewer/angular/open-pdf-file/from-amazon-s3">From AWS S3</a></li>
<li><a href="/document-processing/pdf/pdf-viewer/angular/open-pdf-file/from-azure-blob-storage">From Azure Blob Storage</a></li>
<li><a href="/document-processing/pdf/pdf-viewer/angular/open-pdf-file/from-google-cloud-storage">From Google Cloud Storage</a></li>
<li><a href="/document-processing/pdf/pdf-viewer/angular/open-pdf-file/from-google-drive">From Google Drive</a></li>
<li><a href="/document-processing/pdf/pdf-viewer/angular/open-pdf-file/from-one-drive">From One Drive</a></li>
<li><a href="/document-processing/pdf/pdf-viewer/angular/open-pdf-file/from-dropbox-cloud-file-storage">From Dropbox cloud file storage</a></li>
<li><a href="/document-processing/pdf/pdf-viewer/angular/open-pdf-file/from-box-cloud-file-storage">From Box cloud file storage</a></li>
<li><a href="/document-processing/pdf/pdf-viewer/angular/open-pdf-file/from-azure-active-directory">From Azure Active Directory</a></li>
</ul>
</li>
<li> <a href="/document-processing/pdf/pdf-viewer/angular/save-pdf-files">Save PDF files</a>
<ul>
<li><a href="/document-processing/pdf/pdf-viewer/angular/save-pdf-file/to-amazon-s3">To AWS S3</a></li>
<li><a href="/document-processing/pdf/pdf-viewer/angular/save-pdf-file/to-azure-blob-storage">To Azure Blob Storage</a></li>
<li><a href="/document-processing/pdf/pdf-viewer/angular/save-pdf-file/to-google-cloud-storage">To Google Cloud Storage</a></li>
<li><a href="/document-processing/pdf/pdf-viewer/angular/save-pdf-file/to-google-drive">To Google Drive</a></li>
<li><a href="/document-processing/pdf/pdf-viewer/angular/save-pdf-file/to-one-drive">To One Drive</a></li>
<li><a href="/document-processing/pdf/pdf-viewer/angular/save-pdf-file/to-dropbox-cloud-file-storage">To Dropbox cloud file storage</a></li>
<li><a href="/document-processing/pdf/pdf-viewer/angular/save-pdf-file/to-box-cloud-file-storage">To Box cloud file storage</a></li>
<li><a href="/document-processing/pdf/pdf-viewer/angular/save-pdf-file/to-azure-active-directory">To Azure Active Directory</a></li>
</ul>
</li>
<li><a href="/document-processing/pdf/pdf-viewer/angular/mobile-toolbar">Mobile Toolbar Interface</a></li>
<li><a href="/document-processing/pdf/pdf-viewer/angular/toolbar">Toolbar Customization</a>
<ul>
<li><a href="/document-processing/pdf/pdf-viewer/angular/toolbar-customization/primary-toolbar">Primary Toolbar</a></li>
<li><a href="/document-processing/pdf/pdf-viewer/angular/toolbar-customization/annotation-toolbar">Annotation Toolbar</a></li>
<li><a href="/document-processing/pdf/pdf-viewer/angular/toolbar-customization/form-designer-toolbar">Form Designer Toolbar</a></li>
<li><a href="/document-processing/pdf/pdf-viewer/angular/organize-pages/toolbar">Organize Page Toolbar</a></li>
<li><a href="/document-processing/pdf/pdf-viewer/angular/toolbar-customization/mobile-toolbar">Mobile Toolbar</a></li>
<li><a href="/document-processing/pdf/pdf-viewer/angular/toolbar-customization/custom-toolbar">Custom Toolbar</a></li>
</ul>
</li>
<li><a href="/document-processing/pdf/pdf-viewer/angular/navigation">Interactive PDF Navigation</a>
<ul>
<li><a href="/document-processing/pdf/pdf-viewer/angular/interactive-pdf-navigation/page">Page Navigation</a></li>
<li><a href="/document-processing/pdf/pdf-viewer/angular/interactive-pdf-navigation/bookmark">Bookmark Navigation</a></li>
<li><a href="/document-processing/pdf/pdf-viewer/angular/interactive-pdf-navigation/page-thumbnail">Page Thumbnail Navigation</a></li>
<li><a href="/document-processing/pdf/pdf-viewer/angular/interactive-pdf-navigation/hyperlink">Hyperlink Navigation</a></li>
</ul>
</li>
<li><a href="/document-processing/pdf/pdf-viewer/angular/magnification">Magnification</a></li>
<li><a href="/document-processing/pdf/pdf-viewer/angular/text-search">Text Search</a></li>
<li>Annotation
<ul>
<li><a href="/document-processing/pdf/pdf-viewer/angular/annotation/text-markup-annotation">Text Markup Annotation</a></li>
<li><a href="/document-processing/pdf/pdf-viewer/angular/annotation/shape-annotation">Shape Annotation</a></li>
<li><a href="/document-processing/pdf/pdf-viewer/angular/annotation/stamp-annotation">Stamp Annotation</a></li>
<li><a href="/document-processing/pdf/pdf-viewer/angular/annotation/sticky-notes-annotation">Sticky Notes Annotation</a></li>
<li><a href="/document-processing/pdf/pdf-viewer/angular/annotation/measurement-annotation">Measurement Annotation</a></li>
<li><a href="/document-processing/pdf/pdf-viewer/angular/annotation/free-text-annotation">Free Text Annotation</a></li>
<li><a href="/document-processing/pdf/pdf-viewer/angular/annotation/line-angle-constraints">Line Angle Constraints</a></li>
<li><a href="/document-processing/pdf/pdf-viewer/angular/annotation/ink-annotation">Ink Annotation</a></li>
<li><a href="/document-processing/pdf/pdf-viewer/angular/annotation/import-export-annotation">Import and Export Annotations</a></li>
<li><a href="/document-processing/pdf/pdf-viewer/angular/annotation/comments">Comments</a></li>
<li><a href="/document-processing/pdf/pdf-viewer/angular/annotation/signature-annotation">Handwritten Signature</a></li>
<li><a href="/document-processing/pdf/pdf-viewer/angular/annotation/annotation-event">Annotations Events</a></li>
<li><a href="/document-processing/pdf/pdf-viewer/angular/annotation/annotations-in-mobile-view">Annotations in Mobile view</a></li>
</ul>
</li>
<li>Redaction
<ul>
<li><a href="/document-processing/pdf/pdf-viewer/angular/Redaction/overview">Overview</a></li>
<li><a href="/document-processing/pdf/pdf-viewer/angular/Redaction/ui-interaction">UI Interactions</a></li>
<li><a href="/document-processing/pdf/pdf-viewer/angular/Redaction/programmatic-support">Programmatic Support</a></li>
<li><a href="/document-processing/pdf/pdf-viewer/angular/Redaction/toolbar">Toolbar</a></li>
<li><a href="/document-processing/pdf/pdf-viewer/angular/Redaction/mobile-view">Mobile View</a></li>
<li><a href="/document-processing/pdf/pdf-viewer/angular/Redaction/search-redact">Search Text and Redact</a></li>
</ul>
</li>
<li><a href="/document-processing/pdf/pdf-viewer/angular/interaction-mode">Interaction Mode</a></li>
<li>Forms
<ul>
<li><a href="/document-processing/pdf/pdf-viewer/angular/forms/overview">Overview</a></li>
<li><a href="/document-processing/pdf/pdf-viewer/angular/forms/form-filling">Fill form fields</a></li>
<li><a href="/document-processing/pdf/pdf-viewer/angular/forms/form-designer">Form Designer and Toolbar</a></li>
<li><a href="/document-processing/pdf/pdf-viewer/angular/forms/overview-create-forms">Create, Edit, Style and Remove Form Fields</a>
<ul>
<li><a href="/document-processing/pdf/pdf-viewer/angular/forms/manage-form-fields/create-form-fields">Create form fields</a></li>
<li><a href="/document-processing/pdf/pdf-viewer/angular/forms/manage-form-fields/modify-form-fields">Modify form fields</a></li>
<li><a href="/document-processing/pdf/pdf-viewer/angular/forms/manage-form-fields/customize-form-fields">Customize form fields</a></li>
<li><a href="/document-processing/pdf/pdf-viewer/angular/forms/manage-form-fields/move-resize-form-fields">Move and Resize form fields</a></li>
<li><a href="/document-processing/pdf/pdf-viewer/angular/forms/manage-form-fields/remove-form-fields">Remove form fields</a></li>
</ul>
</li>
<li>Import/Export form data
<ul>
<li><a href="/document-processing/pdf/pdf-viewer/angular/forms/import-export-form-fields/export-form-fields">Export form data</a></li>
<li><a href="/document-processing/pdf/pdf-viewer/angular/forms/import-export-form-fields/import-form-fields">Import form data</a></li>
<li><a href="/document-processing/pdf/pdf-viewer/angular/forms/import-export-form-fields/import-export-events">Import/Export events</a></li>
</ul>
</li>
<li><a href="/document-processing/pdf/pdf-viewer/angular/forms/custom-data">Add custom data in form fields</a></li>
<li><a href="/document-processing/pdf/pdf-viewer/angular/forms/group-form-fields">Grouping form fields</a></li>
<li><a href="/document-processing/pdf/pdf-viewer/angular/forms/form-constrain">Form Field Flags</a></li>
<li><a href="/document-processing/pdf/pdf-viewer/angular/forms/form-validation">Form Validation</a></li>
<li><a href="/document-processing/pdf/pdf-viewer/angular/how-to/custom-fonts">Custom fonts</a></li>
<li><a href="/document-processing/pdf/pdf-viewer/angular/forms/form-field-events">Form Field events</a></li>
<li><a href="/document-processing/pdf/pdf-viewer/angular/forms/form-fields-api">APIs</a></li>
</ul>
</li>
<li><a href="/document-processing/pdf/pdf-viewer/angular/organize-pdf">Organize Pages</a>
<ul>
<li><a href="/document-processing/pdf/pdf-viewer/angular/organize-pages/overview">Overview</a></li>
<li><a href="/document-processing/pdf/pdf-viewer/angular/organize-pages/programmatic-support">Programmatic Support</a></li>
<li><a href="/document-processing/pdf/pdf-viewer/angular/organize-pages/ui-interactions">UI Interactions</a></li>
<li><a href="/document-processing/pdf/pdf-viewer/angular/organize-pages/toolbar">Toolbar</a></li>
<li><a href="/document-processing/pdf/pdf-viewer/angular/organize-pages/extract-pages">Extract Pages</a></li>
<li><a href="/document-processing/pdf/pdf-viewer/angular/organize-pages/mobile-view">Mobile View</a></li>
<li><a href="/document-processing/pdf/pdf-viewer/angular/organize-pages/events">Events</a></li>
</ul>
</li>
<li><a href="/document-processing/pdf/pdf-viewer/angular/print">Print</a></li>
<li><a href="/document-processing/pdf/pdf-viewer/angular/download">Download</a></li>
<li><a href="/document-processing/pdf/pdf-viewer/angular/events">Event</a></li>
<li><a href="/document-processing/pdf/pdf-viewer/angular/text-selection">Text Selection</a></li>
<li><a href="/document-processing/pdf/pdf-viewer/angular/globalization">Globalization</a></li>
<li><a href="/document-processing/pdf/pdf-viewer/angular/accessibility">Accessibility</a></li>
<li><a href="/document-processing/pdf/pdf-viewer/angular/how-to-overview">How To</a>
<ul>
<li><a href="/document-processing/pdf/pdf-viewer/angular/how-to/unload-document">Unload the PDF document Programmatically</a></li>
<li><a href="/document-processing/pdf/pdf-viewer/angular/how-to/load-document">Load PDF documents dynamically</a></li>
<li><a href="/document-processing/pdf/pdf-viewer/angular/how-to/include-authorization-token">Include Authorization Token</a></li>
<li><a href="/document-processing/pdf/pdf-viewer/angular/how-to/get-base-string-of-the-loaded-document">Get the Base64 string of the loaded PDF document</a></li>
<li><a href="/document-processing/pdf/pdf-viewer/angular/how-to/change-selection-border">Customize the selection border</a></li>
<li><a href="/document-processing/pdf/pdf-viewer/angular/how-to/extract-text-completed">Extract Text using extractTextCompleted Event</a></li>
<li><a href="/document-processing/pdf/pdf-viewer/angular/how-to/import-export-annotation">Import and Export annotation</a></li>
<li><a href="/document-processing/pdf/pdf-viewer/angular/how-to/add-header-value">Add custom headers in AjaxRequestSettings</a></li>
<li><a href="/document-processing/pdf/pdf-viewer/angular/how-to/change-author-name-using-annotation-settings">Change author name using AnnotationSettings</a></li>
<li><a href="/document-processing/pdf/pdf-viewer/angular/how-to/delete-annotation">Delete a specific annotation</a></li>
<li><a href="/document-processing/pdf/pdf-viewer/angular/how-to/open-thumbnail">Open Thumbnail pane programmatically</a></li>
<li><a href="/document-processing/pdf/pdf-viewer/angular/how-to/annotation-selectors">Customize the annotation selector</a></li>
<li><a href="/document-processing/pdf/pdf-viewer/angular/how-to/enable-disable-annotation">How to enable and disable the delete button based on annotation selection and unselection events</a></li>
<li><a href="/document-processing/pdf/pdf-viewer/angular/how-to/custom-stamp">Add the custom stamp based on the free text bounds</a></li>
<li><a href="/document-processing/pdf/pdf-viewer/angular/how-to/install-packages-required-for-lower-versions">Install packages required for versions below 12</a></li>
<li><a href="/document-processing/pdf/pdf-viewer/angular/how-to/load-office-files">Load Office files in PDF Viewer</a></li>
<li><a href="/document-processing/pdf/pdf-viewer/angular/how-to/font-family">How to Change the Font Family in the Type Signature</a></li>
<li><a href="/document-processing/pdf/pdf-viewer/angular/how-to/resolve-unable-to-find-an-entry-point-error">Resolve unable to find an entry point named FPDFText_GetCharAngle error</a></li>
<li><a href="/document-processing/pdf/pdf-viewer/angular/how-to/webservice-not-listening">How to clear the Web-service is not listening error</a></li>
<li><a href="/document-processing/pdf/pdf-viewer/angular/how-to/load-n-number-page">Load N number of pages on initial loading</a></li>
<li><a href="/document-processing/pdf/pdf-viewer/angular/how-to/retry-timeout">Retry Timeout</a></li>
<li><a href="/document-processing/pdf/pdf-viewer/angular/how-to/redis-cache">Configure Redis Cache</a></li>
<li><a href="/document-processing/pdf/pdf-viewer/angular/how-to/conformance">Supported conformance documents</a></li>
<li><a href="/document-processing/pdf/pdf-viewer/angular/how-to/custom-context-menu">Customize context menu</a></li>
<li><a href="/document-processing/pdf/pdf-viewer/angular/how-to/pagerenderstarted-pagerendercompleted">PageRenderInitiate and PageRenderComplete event</a></li>
<li><a href="/document-processing/pdf/pdf-viewer/angular/how-to/open-bookmark">Open and Close Bookmark pane programmatically</a></li>
<li><a href="/document-processing/pdf/pdf-viewer/angular/how-to/lock-formfield-in-a-document">Locking Form Fields in a PDF document</a></li>
<li><a href="/document-processing/pdf/pdf-viewer/angular/how-to/signatureselect-signatureunselect">SignatureSelect and SignatureUnselect event</a></li>
<li><a href="/document-processing/pdf/pdf-viewer/angular/how-to/download-start-event">Controlling File Downloads</a></li>
<li><a href="/document-processing/pdf/pdf-viewer/angular/how-to/min-max-zoom">Minimum and Maximum Zoom Properties</a></li>
<li><a href="/document-processing/pdf/pdf-viewer/angular/how-to/restricting-zoom-in-mobile-mode">Restrict Zoom Percentage on Mobile Devices</a></li>
<li><a href="/document-processing/pdf/pdf-viewer/angular/how-to/custom-font-signature-field">Custom fonts for Signature and Initial fields</a></li>
<li><a href="/document-processing/pdf/pdf-viewer/angular/how-to/export-as-image">Export As Image in Angular PDF Viewer component</a></li>
<li><a href="/document-processing/pdf/pdf-viewer/angular/how-to/custom-fonts">Add custom fonts to the PDF Viewer using the PDF document</a></li>
<li><a href="/document-processing/pdf/pdf-viewer/angular/how-to/create-a-standalone-pdf-viewer-in-angular-17-and-above-with-no-standalone-flag">Create a Standalone PDF Viewer in Angular 17 and above with --no-standalone flag</a></li>
<li><a href="/document-processing/pdf/pdf-viewer/angular/how-to/create-a-standalone-pdf-viewer-in-angular-17-and-above-without-no-standalone-flag">Create a Standalone PDF Viewer in Angular 17 and above without --no-standalone flag</a></li>
<li><a href="/document-processing/pdf/pdf-viewer/angular/how-to/create-a-standalone-pdf-viewer-in-angular-12">Create a Standalone PDF Viewer in Angular 12</a></li>
<li><a href="/document-processing/pdf/pdf-viewer/angular/how-to/configure-annotation-selector-setting">Configure Annotation Selector Setting</a></li>
<li><a href="/document-processing/pdf/pdf-viewer/angular/how-to/convert-pdf-library-bounds-to-pdf-viewer-bounds">Convert Pdf Library Bounds to Pdf viewer bounds</a></li>
<li><a href="/document-processing/pdf/pdf-viewer/angular/how-to/show-custom-stamp-item">Display Custom Stamp items in Custom Stamp</a></li>
<li><a href="/document-processing/pdf/pdf-viewer/angular/how-to/getPageInfo">Get Page Info in Angular PDF Viewer component</a></li>
<li><a href="/document-processing/pdf/pdf-viewer/angular/how-to/get-base64">Retrieve base64-encoded value of a loaded PDF document</a></li>
<li><a href="/document-processing/pdf/pdf-viewer/angular/how-to/enable-local-storage">Enable Local Storage</a></li>
<li><a href="/document-processing/pdf/pdf-viewer/angular/how-to/add-annotation-in-text-search">Add Rectangle Annotation using Search Text Bounds</a></li>
<li><a href="/document-processing/pdf/pdf-viewer/angular/how-to/control-annotation-visibility">Control Annotation Visibility</a></li>
<li><a href="/document-processing/pdf/pdf-viewer/angular/how-to/extract-text-option">Extract Text Option</a></li>
<li><a href="/document-processing/pdf/pdf-viewer/angular/how-to/find-text-async">Find Text using findTextAsync Method</a></li>
<li><a href="/document-processing/pdf/pdf-viewer/angular/how-to/extract-text">Extract Text</a></li>
<li><a href="/document-processing/pdf/pdf-viewer/angular/how-to/enable-text-selection">Dynamically Enable or Disable Text Selection</a></li>
<li><a href="/document-processing/pdf/pdf-viewer/angular/how-to/show-hide-annotation">Show and Hide Annotations</a></li>
<li><a href="/document-processing/pdf/pdf-viewer/angular/how-to/load-document-after-resources-loaded">Load document after resources loaded</a></li>
</ul>
</li>
<li>Troubleshooting
<ul>
<li><a href="/document-processing/pdf/pdf-viewer/angular/troubleshooting/troubleshooting">Experience the Standalone PDF Viewer Component by copying assets from node_modules into my app</a></li>
<li><a href="/document-processing/pdf/pdf-viewer/angular/troubleshooting/cp-command-not-recognized">Troubleshoot error 'cp' is not recognized as a command</a></li>
<li><a href="/document-processing/pdf/pdf-viewer/angular/troubleshooting/document-loading-issues">Document Loading Issues in Version 23.1 or Newer</a></li>
<li><a href="/document-processing/pdf/pdf-viewer/angular/troubleshooting/common-errors-when-ej2-pdfviewer-lib-assets-are-missing">Failed to execute 'importScripts' on 'WorkerGlobalScope'</a></li>
</ul>
</li>
<li><a href="https://ej2.syncfusion.com/angular/documentation/api/pdfviewer/">API Reference</a></li>
</ul>
</li>
<li>
<a href="/document-processing/pdf/pdf-viewer/blazor/overview">Blazor</a>
<ul>
<li><a href="/document-processing/pdf/pdf-viewer/blazor/migration">Migration from PDF Viewer (Classic) to PDF Viewer</a></li>
<li>Getting Started
<ul>
<li><a href="/document-processing/pdf/pdf-viewer/blazor/getting-started/web-app">Blazor Web App</a></li>
<li><a href="/document-processing/pdf/pdf-viewer/blazor/getting-started/web-assembly-application">Blazor WASM App</a></li>
<li>Blazor Hybrid
<ul>
<li><a href="/document-processing/pdf/pdf-viewer/blazor/getting-started/maui-blazor-app">.NET MAUI Blazor App</a></li>
<li><a href="/document-processing/pdf/pdf-viewer/blazor/getting-started/wpf-blazor-app">WPF Blazor App</a></li>
<li><a href="/document-processing/pdf/pdf-viewer/blazor/getting-started/winforms-blazor-app">WinForms Blazor App</a></li>
</ul>
</li>
</ul>
</li>
<li>Deployment
<ul>
<li><a href="/document-processing/pdf/pdf-viewer/blazor/deployment/wsl-application">Windows Subsystem for Linux</a></li>
<li><a href="/document-processing/pdf/pdf-viewer/blazor/deployment/aws-beanstalk-deployment">AWS Elastic Beanstalk</a></li>
</ul>
</li>
<li> <a href="/document-processing/pdf/pdf-viewer/blazor/accessibility">Accessibility</a>
<ul>
<li><a href="/document-processing/pdf/pdf-viewer/blazor/accessible-pdf-reading">PDF Reading</a></li>
</ul>
</li>
<li> <a href="/document-processing/pdf/pdf-viewer/blazor/opening-pdf-file">Open PDF files</a>
<ul>
<li><a href="/document-processing/pdf/pdf-viewer/blazor/open-pdf-file/from-amazon-s3">From AWS S3</a></li>
<li><a href="/document-processing/pdf/pdf-viewer/blazor/open-pdf-file/from-azure-blob-storage">From Azure Blob Storage</a></li>
<li><a href="/document-processing/pdf/pdf-viewer/blazor/open-pdf-file/from-google-cloud-storage">From Google Cloud Storage</a></li>
<li><a href="/document-processing/pdf/pdf-viewer/blazor/open-pdf-file/from-google-drive">From Google Drive</a></li>
<li><a href="/document-processing/pdf/pdf-viewer/blazor/open-pdf-file/from-box-cloud-file-storage">From Box cloud file storage</a></li>
</ul>
</li>
<li> <a href="/document-processing/pdf/pdf-viewer/blazor/saving-pdf-file">Save PDF files</a>
<ul>
<li><a href="/document-processing/pdf/pdf-viewer/blazor/save-pdf-file/to-amazon-s3">To AWS S3</a></li>
<li><a href="/document-processing/pdf/pdf-viewer/blazor/save-pdf-file/to-azure-blob-storage">To Azure Blob Storage</a></li>
<li><a href="/document-processing/pdf/pdf-viewer/blazor/save-pdf-file/to-google-cloud-storage">To Google Cloud Storage</a></li>
<li><a href="/document-processing/pdf/pdf-viewer/blazor/save-pdf-file/to-google-drive">To Google Drive</a></li>
<li><a href="/document-processing/pdf/pdf-viewer/blazor/save-pdf-file/to-box-cloud-file-storage">To Box cloud file storage</a></li>
</ul>
</li>
<li> <a href="/document-processing/pdf/pdf-viewer/blazor/toolbar-customization-overview">Toolbar Customization</a>
<ul>
<li><a href="/document-processing/pdf/pdf-viewer/blazor/toolbar-customization/primary-toolbar">Primary Toolbar</a></li>
<li><a href="/document-processing/pdf/pdf-viewer/blazor/toolbar-customization/annotation-toolbar">Annotation Toolbar</a></li>
<li><a href="/document-processing/pdf/pdf-viewer/blazor/toolbar-customization/form-designer-toolbar">Form Designer Toolbar</a></li>
<li><a href="/document-processing/pdf/pdf-viewer/blazor/toolbar-customization/redaction-toolbar">Redaction Toolbar</a></li>
<li><a href="/document-processing/pdf/pdf-viewer/blazor/toolbar-customization/mobile-toolbar">Mobile Toolbar</a></li>
</ul>
</li>
<li> <a href="/document-processing/pdf/pdf-viewer/blazor/command-manager">Command Manager</a></li>
<li> <a href="/document-processing/pdf/pdf-viewer/blazor/interactive-pdf-navigation-overview">Interactive PDF Navigation</a>
<ul>
<li><a href="/document-processing/pdf/pdf-viewer/blazor/interactive-pdf-navigation/pages">Pages</a></li>
<li><a href="/document-processing/pdf/pdf-viewer/blazor/interactive-pdf-navigation/bookmark">Bookmark</a></li>
<li><a href="/document-processing/pdf/pdf-viewer/blazor/interactive-pdf-navigation/page-thumbnail">Page Thumbnail</a></li>
<li><a href="/document-processing/pdf/pdf-viewer/blazor/interactive-pdf-navigation/hyperlink">Hyperlink</a></li>
<li><a href="/document-processing/pdf/pdf-viewer/blazor/interactive-pdf-navigation/table-of-content">Table of Content</a></li>
<li><a href="/document-processing/pdf/pdf-viewer/blazor/interactive-pdf-navigation/modern-panel">Modern Panel</a></li>
</ul>
</li>
<li> <a href="/document-processing/pdf/pdf-viewer/blazor/magnification">Magnification</a></li>
<li> <a href="/document-processing/pdf/pdf-viewer/blazor/text-search">Text Search</a></li>
<li> <a href="/document-processing/pdf/pdf-viewer/blazor/interaction">Interaction Mode</a></li>
<li> <a href="/document-processing/pdf/pdf-viewer/blazor/hand-written-signature">Handwritten Signature</a></li>
<li>Annotations
<ul>
<li><a href="/document-processing/pdf/pdf-viewer/blazor/annotation/text-markup-annotation">Text Markup</a></li>
<li><a href="/document-processing/pdf/pdf-viewer/blazor/annotation/shape-annotation">Shape</a></li>
<li><a href="/document-processing/pdf/pdf-viewer/blazor/annotation/stamp-annotation">Stamp</a></li>
<li><a href="/document-processing/pdf/pdf-viewer/blazor/annotation/sticky-notes-annotation">Sticky Notes</a></li>
<li><a href="/document-processing/pdf/pdf-viewer/blazor/annotation/measurement-annotation">Measurement</a></li>
<li><a href="/document-processing/pdf/pdf-viewer/blazor/annotation/free-text-annotation">Free Text</a></li>
<li><a href="/document-processing/pdf/pdf-viewer/blazor/annotation/ink-annotation">Ink</a></li>
<li><a href="/document-processing/pdf/pdf-viewer/blazor/annotation/comments">Comments</a></li>
<li><a href="/document-processing/pdf/pdf-viewer/blazor/annotation/import-export-annotation">Import and Export</a></li>
<li><a href="/document-processing/pdf/pdf-viewer/blazor/annotation/annotations-in-mobile-view">Mobile View</a></li>
<li><a href="/document-processing/pdf/pdf-viewer/blazor/annotation/events">Events</a></li>
</ul>
</li>
<li>Redaction
<ul>
<li><a href="/document-processing/pdf/pdf-viewer/blazor/redaction/overview">Overview</a></li>
<li><a href="/document-processing/pdf/pdf-viewer/blazor/redaction/create-programmatically">Programmatic Support</a></li>
<li><a href="/document-processing/pdf/pdf-viewer/blazor/redaction/ui-interactions">UI Interaction</a></li>
<li><a href="/document-processing/pdf/pdf-viewer/blazor/redaction/mobile-view">Mobile View</a></li>
</ul>
</li>
<li>Form Designer
<ul>
<li><a href="/document-processing/pdf/pdf-viewer/blazor/form-designer/overview">Overview</a></li>
<li><a href="/document-processing/pdf/pdf-viewer/blazor/form-designer/create-programmatically">Programmatic Support</a></li>
<li><a href="/document-processing/pdf/pdf-viewer/blazor/form-designer/ui-interactions">UI Interactions</a></li>
<li><a href="/document-processing/pdf/pdf-viewer/blazor/form-designer/form-designer-in-mobile-view">Mobile View</a></li>
<li><a href="/document-processing/pdf/pdf-viewer/blazor/form-designer/custom-font">Custom Font</a></li>
<li><a href="/document-processing/pdf/pdf-viewer/blazor/form-designer/events">Events</a></li>
</ul>
</li>
<li> <a href="/document-processing/pdf/pdf-viewer/blazor/form-filling">Form Filling</a></li>
<li><a href="/document-processing/pdf/pdf-viewer/blazor/organize-pdf">Organize Pages</a>
<ul>
<li><a href="/document-processing/pdf/pdf-viewer/blazor/organize-pages/overview">Overview</a></li>
<li><a href="/document-processing/pdf/pdf-viewer/blazor/organize-pages/programmatic-support">Programmatic Support</a></li>
<li><a href="/document-processing/pdf/pdf-viewer/blazor/organize-pages/ui-interactions">UI Interactions</a></li>
<li><a href="/document-processing/pdf/pdf-viewer/blazor/organize-pages/toolbar">Toolbar</a></li>
<li><a href="/document-processing/pdf/pdf-viewer/blazor/organize-pages/mobile-view">Mobile View</a></li>
<li><a href="/document-processing/pdf/pdf-viewer/blazor/organize-pages/events">Events</a></li>
</ul>
</li>
<li> <a href="/document-processing/pdf/pdf-viewer/blazor/print">Print</a></li>
<li> <a href="/document-processing/pdf/pdf-viewer/blazor/document-security-overview">Document security</a>
<ul>
<li><a href="/document-processing/pdf/pdf-viewer/blazor/document-security/password-protected">Password Protected</a></li>
<li><a href="/document-processing/pdf/pdf-viewer/blazor/document-security/permission">Permission</a></li>
</ul>
</li>
<li> <a href="/document-processing/pdf/pdf-viewer/blazor/events">Events</a></li>
<li> <a href="/document-processing/pdf/pdf-viewer/blazor/globalization">Globalization and RTL</a></li>
<li> <a href="/document-processing/pdf/pdf-viewer/blazor/faq">FAQ</a>
<ul>
<li> <a href="/document-processing/pdf/pdf-viewer/blazor/faqs/how-to-load-PDF-from-URL-to-server-side-PDF-viewer">How to Load PDF from URL to server-side PDF viewer</a></li>
<li> <a href="/document-processing/pdf/pdf-viewer/blazor/faqs/how-to-create-sfpdfviewer-in-a-popup-window">How to Create a SfPdfViewer within a popup window in Blazor</a></li>
<li> <a href="/document-processing/pdf/pdf-viewer/blazor/faqs/how-to-load-pdf-document-dynamically">How to Load PDF documents dynamically in Blazor SfPdfViewer Component</a></li>
<li> <a href="/document-processing/pdf/pdf-viewer/blazor/faqs/how-to-load-office-files">How to Load Office files in Blazor SfPdfViewer</a></li>
<li> <a href="/document-processing/pdf/pdf-viewer/blazor/faqs/how-to-view-docx-file-in-blazor-application">How to View DOCX file in Blazor application</a></li>
<li> <a href="/document-processing/pdf/pdf-viewer/blazor/faqs/how-to-unload-the-pdf-document-from-viewer">How to Unload the PDF document from Viewer in Blazor SfPdfViewer Component</a></li>
<li> <a href="/document-processing/pdf/pdf-viewer/blazor/faqs/how-to-import-annotations-as-objects">How to Import annotations as objects in Blazor SfPdfViewer Component</a></li>
<li> <a href="/document-processing/pdf/pdf-viewer/blazor/faqs/how-to-suppress-error-message">How to Suppress the error dialog</a></li>
<li> <a href="/document-processing/pdf/pdf-viewer/blazor/faqs/how-to-move-scrollbar">How to Move the scrollbar to the exact location of annotations</a></li>
<li> <a href="/document-processing/pdf/pdf-viewer/blazor/faqs/how-to-create-sfpdfviewer">How to View the created PDF document</a></li>
<li> <a href="/document-processing/pdf/pdf-viewer/blazor/faqs/how-to-check-status-of-annotations-or-comments">How to Check the status of annotations or comments in Blazor SfPdfViewer Component</a></li>
<li> <a href="/document-processing/pdf/pdf-viewer/blazor/faqs/how-to-customize-arrow-annotation-heads">How to Customize arrow annotation heads in Blazor SfPdfViewer</a></li>
<li> <a href="/document-processing/pdf/pdf-viewer/blazor/faqs/how-to-show-or-hide-sfpdfviewer-dynamically">How to Show or hide the SfPdfViewer Component dynamically in Blazor</a></li>
<li> <a href="/document-processing/pdf/pdf-viewer/blazor/faqs/how-to-increase-connection-buffer-size">How to Increase the connection buffer size in Blazor SfPdfViewer Component</a></li>
<li> <a href="/document-processing/pdf/pdf-viewer/blazor/faqs/how-to-print-the-sfpdfiewer-inside-the-dialog-component">How to Print the SfPdfViewer component inside the Dialog component in Blazor</a></li>
<li> <a href="/document-processing/pdf/pdf-viewer/blazor/faqs/how-to-change-the-highlighted-color-of-the-text">How to Change the highlight color of the text in Blazor SfPdfViewer Component</a></li>
<li> <a href="/document-processing/pdf/pdf-viewer/blazor/faqs/how-to-check-whether-the-loaded-PDF-document-is-edited-or-not">How to Check the document's editing status in Blazor SfPdfViewer Component</a></li>
<li> <a href="/document-processing/pdf/pdf-viewer/blazor/faqs/how-to-create-pdf-document-in-the-created-event-of-sfpdfviewer">How to Create PDF document in the created event of Blazor SfPdfViewer Component</a></li>
<li> <a href="/document-processing/pdf/pdf-viewer/blazor/faqs/how-to-create-sfpdfviewer-in-a-splitter-component">How to Create SfPdfViewer Component in a Splitter Component in Blazor</a></li>
<li> <a href="/document-processing/pdf/pdf-viewer/blazor/faqs/how-to-get-data-from-sfpdfviewer">How to Get PDF document's data from Blazor SfPdfViewer Component</a></li>
<li> <a href="/document-processing/pdf/pdf-viewer/blazor/faqs/how-to-load-desired-pdf-for-initial-loading-in-hosted-sample">How to Load desired PDF for initial loading in Blazor SfPdfViewer Component</a></li>
<li> <a href="/document-processing/pdf/pdf-viewer/blazor/faqs/how-to-stretch-the-sfpdfviewer-size-to-its-container">How to Update the viewer size at run-time in Blazor SfPdfViewer Component</a></li>
<li> <a href="/document-processing/pdf/pdf-viewer/blazor/faqs/how-to-update-form-field-using-context-menu">How to Update form field using context menu in Blazor SfPdfViewer</a></li>
<li> <a href="/document-processing/pdf/pdf-viewer/blazor/faqs/how-to-identify-the-values-in-the-undo-redo-collections">How to Identify if the SfPdfViewer has values in the Undo, Redo collections</a></li>
<li> <a href="/document-processing/pdf/pdf-viewer/blazor/faqs/how-to-render-ej2-pdf-viewer-in-blazor">How to Render JS PDF Viewer inside Blazor SfPdfViewer Component</a></li>
<li> <a href="/document-processing/pdf/pdf-viewer/blazor/faqs/how-to-prevent-scrolling">How to Prevent the PDF from scrolling and remove the vertical scrollbar</a></li>
<li> <a href="/document-processing/pdf/pdf-viewer/blazor/faqs/how-to-perform-print-in-same-window">How to Perform print in same window in Blazor SfPdfViewer Component</a></li>
<li> <a href="/document-processing/pdf/pdf-viewer/blazor/faqs/how-to-print-large-page-document">How to Print large page document in SfPdfViewer Component</a></li>
<li> <a href="/document-processing/pdf/pdf-viewer/blazor/faqs/how-to-refer-sfpdfviewer-script-in-application">How to Refer the SfPdfViewer script file in Blazor application</a></li>
<li> <a href="/document-processing/pdf/pdf-viewer/blazor/faqs/how-to-deploy-maui-using-android-emulator">How to Render PDF document from embedded source in the MAUI Android app</a></li>
<li> <a href="/document-processing/pdf/pdf-viewer/blazor/faqs/how-to-improve-performance-using-CDN">How to Improve the performance using CDN in Blazor SfPdfViewer Component</a></li>
<li> <a href="/document-processing/pdf/pdf-viewer/blazor/faqs/how-to-processing-large-files-without-increasing-maximum-message-size">How to Processing Large Files Without Increasing Maximum Message Size in SfPdfViewer Component</a></li>
<li> <a href="/document-processing/pdf/pdf-viewer/blazor/faqs/how-to-load-custom-font-pdfium">How to Load Custom Fonts in a PDF Viewer</a></li>
<li> <a href="/document-processing/pdf/pdf-viewer/blazor/faqs/how-to-render-n-pages-scrolling">How to Render N number pages on scrolling</a></li>
<li> <a href="/document-processing/pdf/pdf-viewer/blazor/faqs/how-to-load-font-collection">How to Load Font Collection in a PDF Viewer</a></li>
<li> <a href="/document-processing/pdf/pdf-viewer/blazor/faqs/how-to-reduce-slowness-while-running-the-wasm-sample-in-Visual-Studio">How to Reduce slowness while running the WASM sample in Visual Studio</a></li>
<li> <a href="/document-processing/pdf/pdf-viewer/blazor/faqs/how-to-coordinate-conversion-between-page-and-client-points">How to Coordinate Conversion Between Page and Client Points</a></li>
<li> <a href="/document-processing/pdf/pdf-viewer/blazor/faqs/how-to-configure-content-security-policy">How to Configure CSP in Blazor SfPdfViewer Component</a></li>
<li> <a href="/document-processing/pdf/pdf-viewer/blazor/faqs/how-to-extract-particular-text-and-highlight">How to Extract Particular Text and Highlight</a></li>
</ul>
</li>
<li>
<a href="/cr/blazor/Syncfusion.Blazor.SfPdfViewer.SfPdfViewer2.html"> API Reference</a>
</li>
</ul>
</li>
<li>
<a href="/document-processing/pdf/pdf-viewer/react/overview">React</a>
<ul>
<li>
<a href="/document-processing/pdf/pdf-viewer/react/getting-started-overview">Getting Started</a>
<ul>
<li><a href="/document-processing/pdf/pdf-viewer/react/getting-started">with Standalone PDF Viewer</a></li>
<li><a href="/document-processing/pdf/pdf-viewer/react/getting-started-with-server-backed">with Server-Backed PDF Viewer</a></li>
</ul>
</li>
<li>
Environment Integration
<ul>
<li><a href="/document-processing/pdf/pdf-viewer/react/depoyment-integration/nextjs-getting-started">NextJS</a></li>
<li><a href="/document-processing/pdf/pdf-viewer/react/depoyment-integration/preact">Preact</a></li>
<li><a href="/document-processing/pdf/pdf-viewer/react/depoyment-integration/remix">Remix</a></li>
<li><a href="/document-processing/pdf/pdf-viewer/react/depoyment-integration/share-point">SharePoint Framework (SPFx)</a></li>
<li><a href="/document-processing/pdf/pdf-viewer/react/depoyment-integration/gatsby">Gatsby</a></li>
</ul>
</li>
<li><a href="/document-processing/pdf/pdf-viewer/react/feature-module">Feature Modules</a></li>
<li>
<a href="/document-processing/pdf/pdf-viewer/react/open-pdf-files">Open PDF files</a>
<ul>
<li><a href="/document-processing/pdf/pdf-viewer/react/open-pdf-file/from-amazon-s3">From AWS S3</a>
</li>
<li><a href="/document-processing/pdf/pdf-viewer/react/open-pdf-file/from-azure-blob-storage">From Azure Blob Storage</a></li>
<li><a href="/document-processing/pdf/pdf-viewer/react/open-pdf-file/from-google-cloud-storage">From Google Cloud Storage</a></li>
<li><a href="/document-processing/pdf/pdf-viewer/react/open-pdf-file/from-google-drive">From Google Drive</a></li>
<li><a href="/document-processing/pdf/pdf-viewer/react/open-pdf-file/from-one-drive">From One Drive</a></li>
<li><a href="/document-processing/pdf/pdf-viewer/react/open-pdf-file/from-dropbox-cloud-file-storage">From Dropbox cloud file storage</a></li>
<li><a href="/document-processing/pdf/pdf-viewer/react/open-pdf-file/from-box-cloud-file-storage">From Box cloud file storage</a></li>
<li><a href="/document-processing/pdf/pdf-viewer/react/open-pdf-file/from-azure-active-directory">From Azure Active Directory</a></li>
</ul>
</li>
<li>
<a href="/document-processing/pdf/pdf-viewer/react/save-pdf-files">Save PDF files</a>
<ul>
<li><a href="/document-processing/pdf/pdf-viewer/react/save-pdf-file/to-amazon-s3">To AWS S3</a></li>
<li><a href="/document-processing/pdf/pdf-viewer/react/save-pdf-file/to-azure-blob-storage">To Azure Blob Storage</a></li>
<li><a href="/document-processing/pdf/pdf-viewer/react/save-pdf-file/to-google-cloud-storage">To Google Cloud Storage</a></li>
<li><a href="/document-processing/pdf/pdf-viewer/react/save-pdf-file/to-google-drive">To Google Drive</a></li>
<li><a href="/document-processing/pdf/pdf-viewer/react/save-pdf-file/to-one-drive">To One Drive</a></li>
<li><a href="/document-processing/pdf/pdf-viewer/react/save-pdf-file/to-dropbox-cloud-file-storage">To Dropbox cloud file storage</a></li>
<li><a href="/document-processing/pdf/pdf-viewer/react/save-pdf-file/to-box-cloud-file-storage">To Box cloud file storage</a></li>
<li><a href="/document-processing/pdf/pdf-viewer/react/save-pdf-file/to-azure-active-directory">To Azure Active Directory</a></li>
</ul>
</li>
<li>Document Handling
<ul>
<li><a href="/document-processing/pdf/pdf-viewer/react/document-handling/load-large-pdf">Load Large PDF Files</a></li>
<li><a href="/document-processing/pdf/pdf-viewer/react/document-handling/load-password-pdf">Load Password Protected PDFs</a></li>
<li><a href="/document-processing/pdf/pdf-viewer/react/document-handling/preprocess-pdf">Preprocess PDF Document Before Displaying</a></li>
<li><a href="/document-processing/pdf/pdf-viewer/react/document-handling/retrieve-loadedDoc">Retrieve the Loaded Document Instance </a></li>
</ul>
</li>
<li><a href="/document-processing/pdf/pdf-viewer/react/mobile-toolbar">Mobile Toolbar Interface</a></li>