diff --git a/Document-Processing-toc.html b/Document-Processing-toc.html
index 461ff7224..df2eb3f99 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
@@ -565,9 +565,9 @@
Overview
Programmatic Support for Form Designer
UI Interactions in Form Designer
- Form Designer in Mobile View
- Events in Form Designer
+ Form Designer in Mobile View\
Custom Font
+ Events in Form Designer
Form Filling
@@ -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..9347d4535 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%20Events).
+
## See also
* [Events in Blazor SfPdfViewer Component](../events)
\ No newline at end of file
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/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..21be66b05
--- /dev/null
+++ b/Document-Processing/PDF/Smart-PDF-Viewer/blazor/faq.md
@@ -0,0 +1,15 @@
+---
+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
+
+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)
\ 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
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