From 7ab4b46a1da793b034b25b0379fc840951b40566 Mon Sep 17 00:00:00 2001
From: Tamilselvan-Durairaj
<153176971+Tamilselvan-Durairaj@users.noreply.github.com>
Date: Wed, 8 Oct 2025 16:53:26 +0530
Subject: [PATCH 1/5] 981619: Changes for the TOC structure for Pdfviewer and
smart pdfviewer
---
Document-Processing-toc.html | 58 +++++++++----------
.../PDF-Viewer/blazor/annotation/events.md | 28 ++++-----
.../dockerImage-hosting-guide.md | 0
.../PDF/Smart-PDF-Viewer/blazor/faq.md | 16 +++++
...sfsmartpdfviewer-script-in-application.md} | 0
...-use-user-token-with-custom-ai-service.md} | 0
6 files changed, 60 insertions(+), 42 deletions(-)
rename Document-Processing/PDF/Smart-PDF-Viewer/blazor/{how-to => deployment}/dockerImage-hosting-guide.md (100%)
create mode 100644 Document-Processing/PDF/Smart-PDF-Viewer/blazor/faq.md
rename Document-Processing/PDF/Smart-PDF-Viewer/blazor/{how-to/refer-SfSmartPdfViewer-script-in-application.md => faqs/how-to-refer-sfsmartpdfviewer-script-in-application.md} (100%)
rename Document-Processing/PDF/Smart-PDF-Viewer/blazor/{how-to/User-Token-with-Custom-AI-service.md => faqs/how-to-use-user-token-with-custom-ai-service.md} (100%)
diff --git a/Document-Processing-toc.html b/Document-Processing-toc.html
index 461ff7224..77afd070f 100644
--- a/Document-Processing-toc.html
+++ b/Document-Processing-toc.html
@@ -146,14 +146,6 @@
Line Angle Constraint
- Redaction
-
-
Hand Written Signature
Interaction Mode
Form Designer
@@ -487,15 +479,15 @@
-
- Blazor Hybrid
-
-
+
Deployment
+ Redaction
+
+
Form Designer
@@ -1676,18 +1676,18 @@
Getting Started
-
- Blazor Hybrid
-
-
+
Deployment
Document Summarizer
@@ -1702,10 +1702,10 @@
Groq AI Service
- How To
+ FAQ
diff --git a/Document-Processing/PDF/PDF-Viewer/blazor/annotation/events.md b/Document-Processing/PDF/PDF-Viewer/blazor/annotation/events.md
index e26e6b7dd..cabcdcdda 100644
--- a/Document-Processing/PDF/PDF-Viewer/blazor/annotation/events.md
+++ b/Document-Processing/PDF/PDF-Viewer/blazor/annotation/events.md
@@ -42,7 +42,7 @@ The [AddSignature](https://help.syncfusion.com/cr/blazor/Syncfusion.Blazor.SfPdf
#### Event Arguments
-For event data, see [AddSignatureEventArgs](https://help.syncfusion.com/cr/blazor/Syncfusion.Blazor.SfPdfViewer.AddSignatureEventArgs.html) for properties such as AnnotationId, PageNumber, and Bounds.
+For event data, see [AddSignatureEventArgs](https://help.syncfusion.com/cr/blazor/Syncfusion.Blazor.SfPdfViewer.AddSignatureEventArgs.html) for properties such as Id, PageNumber, and Bounds.
The following example illustrates how to handle the AddSignature event.
@@ -58,7 +58,7 @@ The following example illustrates how to handle the AddSignature event.
private string DocumentPath { get; set; } = "wwwroot/Data/PDF_Succintly.pdf";
public async Task AddSignature(AddSignatureEventArgs args)
{
- Console.WriteLine($"Added Signature ID: {args.AnnotationId}");
+ Console.WriteLine($"Added Signature ID: {args.Id}");
}
}
@@ -462,7 +462,7 @@ The [MoveSignature](https://help.syncfusion.com/cr/blazor/Syncfusion.Blazor.SfPd
#### Event Arguments
-See [MoveSignatureEventArgs](https://help.syncfusion.com/cr/blazor/Syncfusion.Blazor.SfPdfViewer.MoveSignatureEventArgs.html) for details such as AnnotationId, PageNumber, PreviousBounds, and Bounds.
+See [MoveSignatureEventArgs](https://help.syncfusion.com/cr/blazor/Syncfusion.Blazor.SfPdfViewer.MoveSignatureEventArgs.html) for details such as Id, PageNumber, PreviousBounds, and Bounds.
The following example illustrates how to handle the MoveSignature event.
@@ -478,7 +478,7 @@ The following example illustrates how to handle the MoveSignature event.
private string DocumentPath { get; set; } = "wwwroot/Data/PDF_Succintly.pdf";
public async Task MoveSignature(MoveSignatureEventArgs args)
{
- Console.WriteLine($"Moved Signture ID: {args.AnnotationId}");
+ Console.WriteLine($"Moved Signture ID: {args.Id}");
}
}
@@ -518,7 +518,7 @@ The [RemoveSignature](https://help.syncfusion.com/cr/blazor/Syncfusion.Blazor.Sf
#### Event Arguments
-See [RemoveSignatureEventArgs](https://help.syncfusion.com/cr/blazor/Syncfusion.Blazor.SfPdfViewer.RemoveSignatureEventArgs.html) for details such as AnnotationId and PageNumber.
+See [RemoveSignatureEventArgs](https://help.syncfusion.com/cr/blazor/Syncfusion.Blazor.SfPdfViewer.RemoveSignatureEventArgs.html) for details such as Id and PageNumber.
The following example illustrates how to handle the RemoveSignature event.
@@ -534,7 +534,7 @@ The following example illustrates how to handle the RemoveSignature event.
private string DocumentPath { get; set; } = "wwwroot/Data/PDF_Succintly.pdf";
public async Task RemoveSignature(RemoveSignatureEventArgs args)
{
- Console.WriteLine($"Removed Signature ID: {args.AnnotationId}");
+ Console.WriteLine($"Removed Signature ID: {args.Id}");
}
}
@@ -546,7 +546,7 @@ The [ResizeSignature](https://help.syncfusion.com/cr/blazor/Syncfusion.Blazor.Sf
#### Event Arguments
-See [ResizeSignatureEventArgs](https://help.syncfusion.com/cr/blazor/Syncfusion.Blazor.SfPdfViewer.ResizeSignatureEventArgs.html) for details such as AnnotationId, PageNumber, PreviousBounds, and Bounds.
+See [ResizeSignatureEventArgs](https://help.syncfusion.com/cr/blazor/Syncfusion.Blazor.SfPdfViewer.ResizeSignatureEventArgs.html) for details such as Id, PageNumber, PreviousBounds, and Bounds.
The following example illustrates how to handle the ResizeSignature event.
@@ -562,7 +562,7 @@ The following example illustrates how to handle the ResizeSignature event.
private string DocumentPath { get; set; } = "wwwroot/Data/PDF_Succintly.pdf";
public async Task ResizeSignature(ResizeSignatureEventArgs args)
{
- Console.WriteLine($"Resized Signature ID: {args.AnnotationId}");
+ Console.WriteLine($"Resized Signature ID: {args.Id}");
}
}
@@ -574,7 +574,7 @@ The [SignaturePropertiesChange](https://help.syncfusion.com/cr/blazor/Syncfusion
#### Event Arguments
-See [SignaturePropertiesChangeEventArgs](https://help.syncfusion.com/cr/blazor/Syncfusion.Blazor.SfPdfViewer.SignaturePropertiesChangeEventArgs.html) for details such as AnnotationId, PageNumber, and changed property values.
+See [SignaturePropertiesChangeEventArgs](https://help.syncfusion.com/cr/blazor/Syncfusion.Blazor.SfPdfViewer.SignaturePropertiesChangeEventArgs.html) for details such as Id, PageNumber, and changed property values.
The following example illustrates how to handle the SignaturePropertiesChange event.
@@ -602,7 +602,7 @@ The [SignatureSelected](https://help.syncfusion.com/cr/blazor/Syncfusion.Blazor.
#### Event Arguments
-See [SignatureSelectedEventArgs](https://help.syncfusion.com/cr/blazor/Syncfusion.Blazor.SfPdfViewer.SignatureSelectedEventArgs.html) for details such as AnnotationId and PageNumber.
+See [SignatureSelectedEventArgs](https://help.syncfusion.com/cr/blazor/Syncfusion.Blazor.SfPdfViewer.SignatureSelectedEventArgs.html) for details such as Id and PageNumber.
The following example illustrates how to handle the SignatureSelected event.
@@ -618,7 +618,7 @@ The following example illustrates how to handle the SignatureSelected event.
private string DocumentPath { get; set; } = "wwwroot/Data/PDF_Succintly.pdf";
public async Task SignatureSelected(SignatureSelectEventArgs args)
{
- Console.WriteLine($"Selected Signture ID: {args.AnnotationId}");
+ Console.WriteLine($"Selected Signture ID: {args.Id}");
}
}
@@ -630,7 +630,7 @@ The [SignatureUnselected](https://help.syncfusion.com/cr/blazor/Syncfusion.Blazo
#### Event Arguments
-See [SignatureUnselectedEventArgs](https://help.syncfusion.com/cr/blazor/Syncfusion.Blazor.SfPdfViewer.SignatureUnselectedEventArgs.html) for details such as AnnotationId and PageNumber.
+See [SignatureUnselectedEventArgs](https://help.syncfusion.com/cr/blazor/Syncfusion.Blazor.SfPdfViewer.SignatureUnselectedEventArgs.html) for details such as Id and PageNumber.
The following example illustrates how to handle the SignatureUnselected event.
@@ -646,12 +646,14 @@ The following example illustrates how to handle the SignatureUnselected event.
private string DocumentPath { get; set; } = "wwwroot/Data/PDF_Succintly.pdf";
public async Task SignatureUnselected(SignatureSelectEventArgs args)
{
- Console.WriteLine($"UnSelected Signature ID: {args.AnnotationId}");
+ Console.WriteLine($"UnSelected Signature ID: {args.Id}");
}
}
```
+[View sample in GitHub](https://github.com/SyncfusionExamples/blazor-pdf-viewer-examples/tree/master/Annotations/Annotation_Events).
+
## See also
* [Events in Blazor SfPdfViewer Component](../events)
\ No newline at end of file
diff --git a/Document-Processing/PDF/Smart-PDF-Viewer/blazor/how-to/dockerImage-hosting-guide.md b/Document-Processing/PDF/Smart-PDF-Viewer/blazor/deployment/dockerImage-hosting-guide.md
similarity index 100%
rename from Document-Processing/PDF/Smart-PDF-Viewer/blazor/how-to/dockerImage-hosting-guide.md
rename to Document-Processing/PDF/Smart-PDF-Viewer/blazor/deployment/dockerImage-hosting-guide.md
diff --git a/Document-Processing/PDF/Smart-PDF-Viewer/blazor/faq.md b/Document-Processing/PDF/Smart-PDF-Viewer/blazor/faq.md
new file mode 100644
index 000000000..5464015be
--- /dev/null
+++ b/Document-Processing/PDF/Smart-PDF-Viewer/blazor/faq.md
@@ -0,0 +1,16 @@
+---
+layout: post
+title: FAQ Section in Blazor Smart PDF Viewer Component | Syncfusion
+description: In this section, you can know about the various questions asked about manipulation of in Blazor Smart PDF Viewer Component.
+platform: document-processing
+control: SfSmartPdfViewer
+documentation: ug
+---
+
+# Frequently Asked Questions Section in Blazor Smart PDF Viewer Component
+
+The frequently asked questions in Syncfusion Blazor Smart PDF Viewer
+
+* [How to use user token with Custom AI service?](./faqs/how-to-use-user-token-with-custom-ai-service)
+* [How to refer SfSmartPdfViewer script in application?](./faqs/how-to-refer-sfsmartpdfviewer-script-in-application)
+* [How to host SfSmartPdfViewer in docker?](./faqs/how-to-host-sfsmartpdfviewer-in-docker)
\ No newline at end of file
diff --git a/Document-Processing/PDF/Smart-PDF-Viewer/blazor/how-to/refer-SfSmartPdfViewer-script-in-application.md b/Document-Processing/PDF/Smart-PDF-Viewer/blazor/faqs/how-to-refer-sfsmartpdfviewer-script-in-application.md
similarity index 100%
rename from Document-Processing/PDF/Smart-PDF-Viewer/blazor/how-to/refer-SfSmartPdfViewer-script-in-application.md
rename to Document-Processing/PDF/Smart-PDF-Viewer/blazor/faqs/how-to-refer-sfsmartpdfviewer-script-in-application.md
diff --git a/Document-Processing/PDF/Smart-PDF-Viewer/blazor/how-to/User-Token-with-Custom-AI-service.md b/Document-Processing/PDF/Smart-PDF-Viewer/blazor/faqs/how-to-use-user-token-with-custom-ai-service.md
similarity index 100%
rename from Document-Processing/PDF/Smart-PDF-Viewer/blazor/how-to/User-Token-with-Custom-AI-service.md
rename to Document-Processing/PDF/Smart-PDF-Viewer/blazor/faqs/how-to-use-user-token-with-custom-ai-service.md
From 8d05765b43e55c08396b3dd00488d72ec4d3bb9e Mon Sep 17 00:00:00 2001
From: Tamilselvan-Durairaj
<153176971+Tamilselvan-Durairaj@users.noreply.github.com>
Date: Wed, 8 Oct 2025 17:00:36 +0530
Subject: [PATCH 2/5] 981619: Update the CI issues
---
Document-Processing/PDF/PDF-Viewer/blazor/annotation/events.md | 2 +-
Document-Processing/PDF/Smart-PDF-Viewer/blazor/faq.md | 2 +-
2 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/Document-Processing/PDF/PDF-Viewer/blazor/annotation/events.md b/Document-Processing/PDF/PDF-Viewer/blazor/annotation/events.md
index cabcdcdda..9347d4535 100644
--- a/Document-Processing/PDF/PDF-Viewer/blazor/annotation/events.md
+++ b/Document-Processing/PDF/PDF-Viewer/blazor/annotation/events.md
@@ -652,7 +652,7 @@ The following example illustrates how to handle the SignatureUnselected event.
```
-[View sample in GitHub](https://github.com/SyncfusionExamples/blazor-pdf-viewer-examples/tree/master/Annotations/Annotation_Events).
+[View sample in GitHub](https://github.com/SyncfusionExamples/blazor-pdf-viewer-examples/tree/master/Annotations/Annotation%20Events).
## See also
diff --git a/Document-Processing/PDF/Smart-PDF-Viewer/blazor/faq.md b/Document-Processing/PDF/Smart-PDF-Viewer/blazor/faq.md
index 5464015be..6e7834bab 100644
--- a/Document-Processing/PDF/Smart-PDF-Viewer/blazor/faq.md
+++ b/Document-Processing/PDF/Smart-PDF-Viewer/blazor/faq.md
@@ -7,7 +7,7 @@ control: SfSmartPdfViewer
documentation: ug
---
-# Frequently Asked Questions Section in Blazor Smart PDF Viewer Component
+# Frequently Asked Questions Section in Blazor Smart PDF Viewer
The frequently asked questions in Syncfusion Blazor Smart PDF Viewer
From cc0e1c7304944a1fd72990385a161b38d0501c41 Mon Sep 17 00:00:00 2001
From: Tamilselvan-Durairaj
<153176971+Tamilselvan-Durairaj@users.noreply.github.com>
Date: Wed, 8 Oct 2025 17:28:33 +0530
Subject: [PATCH 3/5] 981619: Update the sample url link
---
.../PDF/PDF-Viewer/blazor/getting-started/maui-blazor-app.md | 2 +-
.../PDF-Viewer/blazor/getting-started/winforms-blazor-app.md | 2 +-
.../PDF/PDF-Viewer/blazor/getting-started/wpf-blazor-app.md | 2 +-
.../Smart-PDF-Viewer/blazor/getting-started/maui-blazor-app.md | 2 +-
.../PDF/Smart-PDF-Viewer/blazor/getting-started/web-app.md | 2 +-
.../blazor/getting-started/winforms-blazor-app.md | 2 +-
.../Smart-PDF-Viewer/blazor/getting-started/wpf-blazor-app.md | 2 +-
7 files changed, 7 insertions(+), 7 deletions(-)
diff --git a/Document-Processing/PDF/PDF-Viewer/blazor/getting-started/maui-blazor-app.md b/Document-Processing/PDF/PDF-Viewer/blazor/getting-started/maui-blazor-app.md
index d294e0abe..5317a37c5 100644
--- a/Document-Processing/PDF/PDF-Viewer/blazor/getting-started/maui-blazor-app.md
+++ b/Document-Processing/PDF/PDF-Viewer/blazor/getting-started/maui-blazor-app.md
@@ -147,7 +147,7 @@ N> If any errors occur while using the Android Emulator, see [Troubleshooting An

->[View the sample on GitHub](https://github.com/SyncfusionExamples/blazor-pdf-viewer-examples/tree/master/Server%20Deployment/Maui/MauiBlazorWindow).
+>[View the sample on GitHub](https://github.com/SyncfusionExamples/blazor-pdf-viewer-examples/tree/master/Getting%20Started/MAUI%20Blazor%20App/MauiBlazorWindow).
## See also
diff --git a/Document-Processing/PDF/PDF-Viewer/blazor/getting-started/winforms-blazor-app.md b/Document-Processing/PDF/PDF-Viewer/blazor/getting-started/winforms-blazor-app.md
index b9231f054..914c4707a 100644
--- a/Document-Processing/PDF/PDF-Viewer/blazor/getting-started/winforms-blazor-app.md
+++ b/Document-Processing/PDF/PDF-Viewer/blazor/getting-started/winforms-blazor-app.md
@@ -199,7 +199,7 @@ Run the WinForms application. The Syncfusion® Blazor PDF Viewer renders insi

->[View the sample on GitHub](https://github.com/SyncfusionExamples/blazor-pdf-viewer-examples/tree/master/Server%20Deployment/WinForms).
+>[View the sample on GitHub](https://github.com/SyncfusionExamples/blazor-pdf-viewer-examples/tree/master/Getting%20Started/WinForms%20Blazor%20App).
## See also
diff --git a/Document-Processing/PDF/PDF-Viewer/blazor/getting-started/wpf-blazor-app.md b/Document-Processing/PDF/PDF-Viewer/blazor/getting-started/wpf-blazor-app.md
index ddf3fa479..05859ed78 100644
--- a/Document-Processing/PDF/PDF-Viewer/blazor/getting-started/wpf-blazor-app.md
+++ b/Document-Processing/PDF/PDF-Viewer/blazor/getting-started/wpf-blazor-app.md
@@ -215,7 +215,7 @@ Run the WPF application. The Syncfusion® Blazor PDF Viewer renders inside th

->[View the sample on GitHub](https://github.com/SyncfusionExamples/blazor-pdf-viewer-examples/tree/master/Server%20Deployment/DeployWPF).
+>[View the sample on GitHub](https://github.com/SyncfusionExamples/blazor-pdf-viewer-examples/tree/master/Getting%20Started/WPF%20Blazor%20App).
## See also
diff --git a/Document-Processing/PDF/Smart-PDF-Viewer/blazor/getting-started/maui-blazor-app.md b/Document-Processing/PDF/Smart-PDF-Viewer/blazor/getting-started/maui-blazor-app.md
index 781ed7971..e7907ef6b 100644
--- a/Document-Processing/PDF/Smart-PDF-Viewer/blazor/getting-started/maui-blazor-app.md
+++ b/Document-Processing/PDF/Smart-PDF-Viewer/blazor/getting-started/maui-blazor-app.md
@@ -255,7 +255,7 @@ N> If any errors occur while using the Android Emulator, see [Troubleshooting th

->[View Sample in GitHub](https://github.com/SyncfusionExamples/blazor-smart-pdf-viewer-examples/tree/master/GettingStartedMAUI).
+>[View Sample in GitHub](https://github.com/SyncfusionExamples/blazor-smart-pdf-viewer-examples/tree/master/Getting%20Started/MAUI%20Blazor%20App).
## See also
diff --git a/Document-Processing/PDF/Smart-PDF-Viewer/blazor/getting-started/web-app.md b/Document-Processing/PDF/Smart-PDF-Viewer/blazor/getting-started/web-app.md
index 6635643f5..4ccaed1f5 100644
--- a/Document-Processing/PDF/Smart-PDF-Viewer/blazor/getting-started/web-app.md
+++ b/Document-Processing/PDF/Smart-PDF-Viewer/blazor/getting-started/web-app.md
@@ -321,7 +321,7 @@ Add the Syncfusion® Blazor Smart PDF Viewer

-N> [View sample in GitHub](https://github.com/SyncfusionExamples/blazor-smart-pdf-viewer-examples/tree/master/GettingStarted).
+N> [View sample in GitHub](https://github.com/SyncfusionExamples/blazor-smart-pdf-viewer-examples/tree/master/Getting%20Started/Blazor%20Web%20App).
## See also
diff --git a/Document-Processing/PDF/Smart-PDF-Viewer/blazor/getting-started/winforms-blazor-app.md b/Document-Processing/PDF/Smart-PDF-Viewer/blazor/getting-started/winforms-blazor-app.md
index 8dcc8b11d..d3b8642da 100644
--- a/Document-Processing/PDF/Smart-PDF-Viewer/blazor/getting-started/winforms-blazor-app.md
+++ b/Document-Processing/PDF/Smart-PDF-Viewer/blazor/getting-started/winforms-blazor-app.md
@@ -232,7 +232,7 @@ Run the WinForms application. The Syncfusion® Blazor Smart PDF Viewer render

->[View the sample on GitHub](https://github.com/SyncfusionExamples/blazor-smart-pdf-viewer-examples/tree/master/GettingStartedWinForms).
+>[View the sample on GitHub](https://github.com/SyncfusionExamples/blazor-smart-pdf-viewer-examples/tree/master/Getting%20Started/WinForms%20Blazor%20App).
## See also
diff --git a/Document-Processing/PDF/Smart-PDF-Viewer/blazor/getting-started/wpf-blazor-app.md b/Document-Processing/PDF/Smart-PDF-Viewer/blazor/getting-started/wpf-blazor-app.md
index 0f12347c4..46e46701e 100644
--- a/Document-Processing/PDF/Smart-PDF-Viewer/blazor/getting-started/wpf-blazor-app.md
+++ b/Document-Processing/PDF/Smart-PDF-Viewer/blazor/getting-started/wpf-blazor-app.md
@@ -255,7 +255,7 @@ Run the WPF application. The Syncfusion® Blazor Smart PDF Viewer renders ins

->[View the sample on GitHub](https://github.com/SyncfusionExamples/blazor-smart-pdf-viewer-examples/tree/master/GettingStartedWPFApp).
+>[View the sample on GitHub](https://github.com/SyncfusionExamples/blazor-smart-pdf-viewer-examples/tree/master/Getting%20Started/WPF%20Blazor%20App).
## See also
From b0738bcb9a8d7ab8093077a71f1c77fdfce555ed Mon Sep 17 00:00:00 2001
From: Tamilselvan-Durairaj
<153176971+Tamilselvan-Durairaj@users.noreply.github.com>
Date: Wed, 8 Oct 2025 18:13:00 +0530
Subject: [PATCH 4/5] 981619: Update the review changes
---
Document-Processing-toc.html | 6 +++---
Document-Processing/PDF/Smart-PDF-Viewer/blazor/faq.md | 3 +--
2 files changed, 4 insertions(+), 5 deletions(-)
diff --git a/Document-Processing-toc.html b/Document-Processing-toc.html
index 77afd070f..1fbed75a1 100644
--- a/Document-Processing-toc.html
+++ b/Document-Processing-toc.html
@@ -549,7 +549,7 @@
Comments
Import and Export Annotations
Annotations in Mobile View
- Events
+ Events in Annotations
Redaction
@@ -565,9 +565,9 @@
Overview
Programmatic Support for Form Designer
UI Interactions in Form Designer
- Form Designer in Mobile View
- Events
+ Form Designer in Mobile View\
Custom Font
+ Events in Form Designer
Form Filling
diff --git a/Document-Processing/PDF/Smart-PDF-Viewer/blazor/faq.md b/Document-Processing/PDF/Smart-PDF-Viewer/blazor/faq.md
index 6e7834bab..21be66b05 100644
--- a/Document-Processing/PDF/Smart-PDF-Viewer/blazor/faq.md
+++ b/Document-Processing/PDF/Smart-PDF-Viewer/blazor/faq.md
@@ -12,5 +12,4 @@ documentation: ug
The frequently asked questions in Syncfusion Blazor Smart PDF Viewer
* [How to use user token with Custom AI service?](./faqs/how-to-use-user-token-with-custom-ai-service)
-* [How to refer SfSmartPdfViewer script in application?](./faqs/how-to-refer-sfsmartpdfviewer-script-in-application)
-* [How to host SfSmartPdfViewer in docker?](./faqs/how-to-host-sfsmartpdfviewer-in-docker)
\ No newline at end of file
+* [How to refer SfSmartPdfViewer script in application?](./faqs/how-to-refer-sfsmartpdfviewer-script-in-application)
\ No newline at end of file
From 93fd9afcea7aecebee37ed6875a23a9474266780 Mon Sep 17 00:00:00 2001
From: Tamilselvan-Durairaj
<153176971+Tamilselvan-Durairaj@users.noreply.github.com>
Date: Wed, 8 Oct 2025 18:41:40 +0530
Subject: [PATCH 5/5] 981619: Update the MAUI title
---
Document-Processing-toc.html | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/Document-Processing-toc.html b/Document-Processing-toc.html
index 1fbed75a1..df2eb3f99 100644
--- a/Document-Processing-toc.html
+++ b/Document-Processing-toc.html
@@ -481,7 +481,7 @@
Blazor WASM App
Blazor Hybrid
@@ -1678,7 +1678,7 @@
Blazor Web App
Blazor Hybrid