diff --git a/wpf/Pdf-Viewer/How-To/Change-the-selection-color-of-annotations.md b/wpf/Pdf-Viewer/How-To/Change-the-selection-color-of-annotations.md
index 1f00aa23df..a7b2b5b29d 100644
--- a/wpf/Pdf-Viewer/How-To/Change-the-selection-color-of-annotations.md
+++ b/wpf/Pdf-Viewer/How-To/Change-the-selection-color-of-annotations.md
@@ -9,7 +9,7 @@ documentation: ug
# Change the Selection color of the annotations
-PDF Viewer allows you to change the selection color of both the locked and unlocked annotations with the `SelectorSettings` property of the [PdfViewerControl](https://help.syncfusion.com/cr/wpf/Syncfusion.Windows.PdfViewer.PdfViewerControl.html) and [PdfDocumentView](https://help.syncfusion.com/cr/wpf/Syncfusion.Windows.PdfViewer.PdfDocumentView.html) classes. The following code sample illustrates the same.
+PDF Viewer allows you to change the selection color of both the locked and unlocked annotations with the [SelectorSettings](https://help.syncfusion.com/cr/wpf/Syncfusion.Windows.PdfViewer.PdfViewerControl.html#Syncfusion_Windows_PdfViewer_PdfViewerControl_SelectorSettings) property of the [PdfViewerControl](https://help.syncfusion.com/cr/wpf/Syncfusion.Windows.PdfViewer.PdfViewerControl.html) and [PdfDocumentView](https://help.syncfusion.com/cr/wpf/Syncfusion.Windows.PdfViewer.PdfDocumentView.html) classes. The following code sample illustrates the same.
{% tabs %}
{% highlight c# %}
diff --git a/wpf/Pdf-Viewer/Navigating-through-the-pages.md b/wpf/Pdf-Viewer/Navigating-through-the-pages.md
index 0bae1260cd..b8841dfef7 100644
--- a/wpf/Pdf-Viewer/Navigating-through-the-pages.md
+++ b/wpf/Pdf-Viewer/Navigating-through-the-pages.md
@@ -1,7 +1,7 @@
---
layout: post
-title: Page Navigation in WPF Pdf Viewer control | Syncfusion®;
-description: Learn about Page Navigation support in Syncfusion®; Essential Studio® WPF Pdf Viewer control, its elements and more.
+title: Page Navigation in WPF Pdf Viewer control | Syncfusion®
+description: Learn about Page Navigation support in Syncfusion® Essential Studio® WPF Pdf Viewer control, its elements and more.
platform: wpf
control: PDF Viewer
documentation: ug
@@ -32,7 +32,7 @@ pdfViewer.GotoPage(2)
{% endtabs %}
## Navigate to the horizontal and vertical offset
-You can now scroll to the given horizontal and vertical offset of the PDF document programmatically using the [ScrollTo](https://help.syncfusion.com/cr/wpf/Syncfusion.Windows.PdfViewer.PdfViewerControl.html#Syncfusion_Windows_PdfViewer_PdfViewerControl_ScrollTo_System_Double_) method of [PdfViewerControl](https://help.syncfusion.com/cr/wpf/Syncfusion.Windows.PdfViewer.PdfViewerControl.html). Refer to the following code to scroll the PDF document to the horizontal and vertical offset of 160 and 400 respectively.
+You can now scroll to the given horizontal and vertical offset of the PDF document programmatically using the [ScrollTo](https://help.syncfusion.com/cr/wpf/Syncfusion.Windows.PdfViewer.PdfViewerControl.html#Syncfusion_Windows_PdfViewer_PdfViewerControl_ScrollTo_System_Double_System_Double_) method of [PdfViewerControl](https://help.syncfusion.com/cr/wpf/Syncfusion.Windows.PdfViewer.PdfViewerControl.html). Refer to the following code to scroll the PDF document to the horizontal and vertical offset of 160 and 400 respectively.
{% tabs %}
{% highlight C# %}
diff --git a/wpf/Pdf-Viewer/Searching-Text.md b/wpf/Pdf-Viewer/Searching-Text.md
index 22839e2c34..5b75bb4eb3 100644
--- a/wpf/Pdf-Viewer/Searching-Text.md
+++ b/wpf/Pdf-Viewer/Searching-Text.md
@@ -1,7 +1,7 @@
---
layout: post
-title: Search text in PDF files using WPF PDF Viewer | Syncfusion®;
-description: Learn about Searching Text support in Syncfusion®; Essential Studio® WPF Pdf Viewer control, its elements and more.
+title: Search text in PDF files using WPF PDF Viewer | Syncfusion®
+description: Learn about Searching Text support in Syncfusion® Essential Studio® WPF Pdf Viewer control, its elements and more.
platform: wpf
control: PDF Viewer
documentation: ug
@@ -85,7 +85,7 @@ The [FindText](https://help.syncfusion.com/cr/wpf/Syncfusion.Windows.PdfViewer.P
### Find and get the bounds of a text
-The [FindText(String, out Dictionary>)](https://help.syncfusion.com/cr/wpf/Syncfusion.Windows.PdfViewer.PdfViewerControl.html#Syncfusion_Windows_PdfViewer_PdfViewerControl_FindText_System_String_System_Collections_Generic_Dictionary_System_Int32_System_Collections_Generic_List_System_Drawing_RectangleF____) method takes the input argument as the given text. It provides a dictionary that contains the page index and the list of rectangular coordinates(bounds) of the text found on that page. The below code snippet shows how to get the bounds of the given text:
+The [FindText](https://help.syncfusion.com/cr/wpf/Syncfusion.Windows.PdfViewer.PdfViewerControl.html#Syncfusion_Windows_PdfViewer_PdfViewerControl_FindText_System_String_System_Collections_Generic_Dictionary_System_Int32_System_Collections_Generic_List_System_Drawing_RectangleF____) method takes the input argument as the given text. It provides a dictionary that contains the page index and the list of rectangular coordinates(bounds) of the text found on that page. The below code snippet shows how to get the bounds of the given text:
{% tabs %}
{% highlight c# %}
@@ -109,7 +109,7 @@ private void PdfViewer_DocumentLoaded(object sender, EventArgs args)
### Find and get the bounds of a text on the desired page
-The [FindText(String, Int32, out List)](https://help.syncfusion.com/cr/wpf/Syncfusion.Windows.PdfViewer.PdfViewerControl.html#Syncfusion_Windows_PdfViewer_PdfViewerControl_FindText_System_String_System_Int32_System_Collections_Generic_List_System_Drawing_RectangleF___) method takes the input arguments as the text to be found along with the desired page index and provides a list of values that contains the rectangular coordinates(bounds) of the found text. The below code snippet shows how to get the bounds of the given text on a particular page:
+The [FindText](https://help.syncfusion.com/cr/wpf/Syncfusion.Windows.PdfViewer.PdfViewerControl.html#Syncfusion_Windows_PdfViewer_PdfViewerControl_FindText_System_String_System_Int32_System_Collections_Generic_List_System_Drawing_RectangleF___) method takes the input arguments as the text to be found along with the desired page index and provides a list of values that contains the rectangular coordinates(bounds) of the found text. The below code snippet shows how to get the bounds of the given text on a particular page:
{% tabs %}
{% highlight c# %}
@@ -133,7 +133,7 @@ private void PdfViewer_DocumentLoaded(object sender, EventArgs args)
### Find and get the bounds of the list of text
-The [FindText(List, out Dictionary>)](https://help.syncfusion.com/cr/wpf/Syncfusion.Windows.PdfViewer.PdfViewerControl.html#Syncfusion_Windows_PdfViewer_PdfViewerControl_FindText_System_Collections_Generic_List_System_String__System_Collections_Generic_Dictionary_System_Int32_System_Collections_Generic_List_Syncfusion_Windows_PdfViewer_TextSearchResult____) method takes the input argument as the list of text that needs to be found. It provides a list of ‘TextSearchResult’, which contains the found text and its rectangular coordinates(bounds). The below code snippet shows how to get the bounds of the found text from the Text Search Result:
+The [FindText](https://help.syncfusion.com/cr/wpf/Syncfusion.Windows.PdfViewer.PdfViewerControl.html#Syncfusion_Windows_PdfViewer_PdfViewerControl_FindText_System_Collections_Generic_List_System_String__System_Collections_Generic_Dictionary_System_Int32_System_Collections_Generic_List_Syncfusion_Windows_PdfViewer_TextSearchResult____) method takes the input argument as the list of text that needs to be found. It provides a list of ‘TextSearchResult’, which contains the found text and its rectangular coordinates(bounds). The below code snippet shows how to get the bounds of the found text from the Text Search Result:
{% tabs %}
{% highlight c# %}
@@ -159,7 +159,7 @@ private void PdfViewer_DocumentLoaded(object sender, EventArgs args)
### Find and get the bounds of the list of text on the desired page
-The [FindText(List, Int32, out List)](https://help.syncfusion.com/cr/wpf/Syncfusion.Windows.PdfViewer.PdfViewerControl.html#Syncfusion_Windows_PdfViewer_PdfViewerControl_FindText_System_Collections_Generic_List_System_String__System_Int32_System_Collections_Generic_List_Syncfusion_Pdf_Parsing_MatchedItem___) method takes the input argument as the list of text to be found along with the desired page index and provides the list of [MatchedItem](https://help.syncfusion.com/cr/wpf/Syncfusion.Pdf.Parsing.MatchedItem.html), which contains the matched text, and its rectangular coordinates(bounds). The below code snippet illustrates how to get the bounds of the text from the matched item:
+The [FindText](https://help.syncfusion.com/cr/wpf/Syncfusion.Windows.PdfViewer.PdfViewerControl.html#Syncfusion_Windows_PdfViewer_PdfViewerControl_FindText_System_Collections_Generic_List_System_String__System_Int32_System_Collections_Generic_List_Syncfusion_Pdf_Parsing_MatchedItem___) method takes the input argument as the list of text to be found along with the desired page index and provides the list of [MatchedItem](https://help.syncfusion.com/cr/wpf/Syncfusion.Pdf.Parsing.MatchedItem.html), which contains the matched text, and its rectangular coordinates(bounds). The below code snippet illustrates how to get the bounds of the text from the matched item:
{% tabs %}
{% highlight c# %}
diff --git a/wpf/Pdf-Viewer/Select-and-copy-text.md b/wpf/Pdf-Viewer/Select-and-copy-text.md
index 89621f1f10..20047f10c7 100644
--- a/wpf/Pdf-Viewer/Select-and-copy-text.md
+++ b/wpf/Pdf-Viewer/Select-and-copy-text.md
@@ -1,7 +1,7 @@
---
layout: post
-title: Select and Copy Text in PDF files using WPF PDF Viewer | Syncfusion®;
-description: Learn about Select and Copy Text support in Syncfusion®; Essential Studio® WPF Pdf Viewer control, its elements and more.
+title: Select and Copy Text from PDF using WPF PDF Viewer | Syncfusion®
+description: Learn about Select and Copy Text support in Syncfusion® Essential Studio® WPF Pdf Viewer control.
platform: wpf
control: PDF Viewer
documentation: ug
@@ -15,7 +15,7 @@ N> From version 19.4.0.48, we have updated our default text extraction engine to
## Detecting the completion of text selection
-When the text selection is completed, the [TextSelectionCompleted](https://help.syncfusion.com/cr/wpf/Syncfusion.Windows.PdfViewer.PdfViewerControl.html) event will be raised. Refer to the following code snippet for wiring the event.
+When the text selection is completed, the [TextSelectionCompleted](https://help.syncfusion.com/cr/wpf/Syncfusion.Windows.PdfViewer.PdfViewerControl.html#Syncfusion_Windows_PdfViewer_PdfViewerControl_TextSelectionCompleted) event will be raised. Refer to the following code snippet for wiring the event.
{% tabs %}
{% highlight c# %}
diff --git a/wpf/Pdf-Viewer/Viewing-PDF-Files.md b/wpf/Pdf-Viewer/Viewing-PDF-Files.md
index edc0873b43..4a6dc1d114 100644
--- a/wpf/Pdf-Viewer/Viewing-PDF-Files.md
+++ b/wpf/Pdf-Viewer/Viewing-PDF-Files.md
@@ -1,7 +1,7 @@
---
layout: post
-title: Viewing PDF Files in WPF Pdf Viewer control | Syncfusion®;
-description: Learn about Viewing PDF Files support in Syncfusion®; Essential Studio® WPF Pdf Viewer control, its elements and more.
+title: Viewing PDF Files in WPF Pdf Viewer control | Syncfusion®
+description: Learn about Viewing PDF Files support in Syncfusion® Essential Studio® WPF Pdf Viewer control, its elements and more.
platform: wpf
control: PDF Viewer
documentation: ug
@@ -95,7 +95,7 @@ namespace PdfViewerDemo
## View PDF file using the ItemSource property
-You can also view a PDF file using the [ItemSource](https://help.syncfusion.com/cr/wpf/Syncfusion.Windows.PdfViewer.PdfViewerControl.html#Syncfusion_Windows_PdfViewer_PdfViewerControl_ItemSource) property of [PdfViewerControl](https://help.syncfusion.com/cr/wpf/Syncfusion.Windows.PdfViewer.PdfViewerControl.html#Syncfusion_Windows_PdfViewer_PdfViewerControl_ItemSource). The property accepts a string file path, a [Stream](https://learn.microsoft.com/en-us/dotnet/api/system.io.stream?view=net-7.0&redirectedfrom=MSDN), and a [PdfLoadedDocument](https://help.syncfusion.com/cr/file-formats/Syncfusion.Pdf.Parsing.PdfLoadedDocument.html) object.
+You can also view a PDF file using the [ItemSource](https://help.syncfusion.com/cr/wpf/Syncfusion.Windows.PdfViewer.PdfViewerControl.html#Syncfusion_Windows_PdfViewer_PdfViewerControl_ItemSource) property of [PdfViewerControl](https://help.syncfusion.com/cr/wpf/Syncfusion.Windows.PdfViewer.PdfViewerControl.html). The property accepts a string file path, a [Stream](https://learn.microsoft.com/en-us/dotnet/api/system.io.stream?view=net-7.0&redirectedfrom=MSDN), and a [PdfLoadedDocument](https://help.syncfusion.com/cr/file-formats/Syncfusion.Pdf.Parsing.PdfLoadedDocument.html) object.
{% tabs %}
{% highlight c# %}
@@ -142,7 +142,7 @@ pdfViewer.ItemSource = pdfLoadedDocument;
## View PDF files without using the toolbar
-The [PdfDocumentView](https://help.syncfusion.com/cr/wpf/Syncfusion.Windows.PdfViewer.PdfDocumentView.html) control allows you to view the PDF files without toolbar using the [Load](https://help.syncfusion.com/cr/wpf/Syncfusion.Windows.PdfViewer.PdfDocumentView.html) methods from code behind. Refer to the following steps to perform the same.
+The [PdfDocumentView](https://help.syncfusion.com/cr/wpf/Syncfusion.Windows.PdfViewer.PdfDocumentView.html) control allows you to view the PDF files without toolbar using the [Load](https://help.syncfusion.com/cr/wpf/Syncfusion.Windows.PdfViewer.PdfViewerControl.html#Syncfusion_Windows_PdfViewer_PdfViewerControl_Load_System_String_) methods from code behind. Refer to the following steps to perform the same.
1. Add the [PdfDocumentView](https://help.syncfusion.com/cr/wpf/Syncfusion.Windows.PdfViewer.PdfDocumentView.html) control in the MainWindow.xaml.
@@ -243,7 +243,7 @@ namespace PdfViewerDemo
{% endhighlight %}
{% endtabs %}
-If you open a file using the toolbar, you can obtain the information in the [DocumentLoaded](https://help.syncfusion.com/cr/wpf/Syncfusion.Windows.PdfViewer.PdfDocumentView.html) event. Refer to the following code to achieve the same.
+If you open a file using the toolbar, you can obtain the information in the [DocumentLoaded](https://help.syncfusion.com/cr/wpf/Syncfusion.Windows.PdfViewer.PdfViewerControl.html#Syncfusion_Windows_PdfViewer_PdfViewerControl_DocumentLoaded) event. Refer to the following code to achieve the same.
{% tabs %}
{% highlight c# %}
diff --git a/wpf/Pdf-Viewer/Working-With-PDF-Coordinates.md b/wpf/Pdf-Viewer/Working-With-PDF-Coordinates.md
index 4c306e8103..af7b0bc14e 100644
--- a/wpf/Pdf-Viewer/Working-With-PDF-Coordinates.md
+++ b/wpf/Pdf-Viewer/Working-With-PDF-Coordinates.md
@@ -1,7 +1,7 @@
---
layout: post
-title: Working With PDF Coordinates in WPF Pdf Viewer control | Syncfusion®;
-description: Learn about PDF Coordinates support in Syncfusion®; Essential Studio® WPF Pdf Viewer control, its elements and more.
+title: PDF Coordinates in WPF Pdf Viewer control | Syncfusion®
+description: Learn about PDF Coordinates support in Syncfusion® Essential Studio® WPF Pdf Viewer control, its elements and more.
platform: wpf
control: PDF Viewer
documentation: ug
@@ -17,7 +17,7 @@ The WPF PDF Viewer specifies the position of points in the client area(viewport)

-The client rectangle can be obtained by the `ClientRectangle` property of the PDF Viewer.
+The client rectangle can be obtained by the [ClientRectangle](https://help.syncfusion.com/cr/wpf/Syncfusion.Windows.PdfViewer.PdfViewerControl.html#Syncfusion_Windows_PdfViewer_PdfViewerControl_ClientRectangle) property of the PDF Viewer.
{% tabs %}
{% highlight c# %}
@@ -53,7 +53,7 @@ pdfViewerControl.ScrollTo(m_currentHorizontalOffset+10, m_currentVerticalOffset+
## Convert PDF Viewer's coordinates to PDF page coordinates
-The user can convert the client coordinates to the PDF page coordinates using the `ConvertClientPointToPagePoint` method by passing the client rectangle point and page number as input parameters. The user can get the page number of the client area using the `GetPageNumberFromClientPoint` method by passing the client rectangle point as the input parameter. The following code snippet explains how to convert the clicked client area position to a page point.
+The user can convert the client coordinates to the PDF page coordinates using the [ConvertClientPointToPagePoint](https://help.syncfusion.com/cr/wpf/Syncfusion.Windows.PdfViewer.PdfViewerControl.html#Syncfusion_Windows_PdfViewer_PdfViewerControl_ConvertClientPointToPagePoint_System_Windows_Point_System_Int32_) method by passing the client rectangle point and page number as input parameters. The user can get the page number of the client area using the [GetPageNumberFromClientPoint](https://help.syncfusion.com/cr/wpf/Syncfusion.Windows.PdfViewer.PdfViewerControl.html#Syncfusion_Windows_PdfViewer_PdfViewerControl_GetPageNumberFromClientPoint_System_Windows_Point_) method by passing the client rectangle point as the input parameter. The following code snippet explains how to convert the clicked client area position to a page point.
{% tabs %}
{% highlight c# %}
@@ -75,7 +75,7 @@ private void PdfViewerControl_PageClicked(object sender, PageClickedEventArgs e)
## Convert PDF page coordinates to PDF Viewer's coordinates
-The user can also convert the PDF page coordinates to the client coordinates using the `ConvertPagePointToClientPoint` method by passing the page point and page number as input parameters. The following code snippet explains how to convert a shape annotation's position in the page coordinates to a client point.
+The user can also convert the PDF page coordinates to the client coordinates using the [ConvertPagePointToClientPoint](https://help.syncfusion.com/cr/wpf/Syncfusion.Windows.PdfViewer.PdfViewerControl.html#Syncfusion_Windows_PdfViewer_PdfViewerControl_ConvertPagePointToClientPoint_System_Windows_Point_System_Int32_) method by passing the page point and page number as input parameters. The following code snippet explains how to convert a shape annotation's position in the page coordinates to a client point.
{% tabs %}
{% highlight c# %}
@@ -99,7 +99,7 @@ private void PdfViewer_ShapeAnnotationChanged(object sender, ShapeAnnotationChan
## Convert PDF page coordinates to scroll coordinates
-The user can obtain the scroll coordinates using the `ConvertPagePointToScrollPoint` method by passing the page point and page number as input parameters. The following code example explains how to convert a shape annotation’s position in the page coordinates to a scroll point in the PDF Viewer.
+The user can obtain the scroll coordinates using the [ConvertPagePointToScrollPoint](https://help.syncfusion.com/cr/wpf/Syncfusion.Windows.PdfViewer.PdfViewerControl.html#Syncfusion_Windows_PdfViewer_PdfViewerControl_ConvertPagePointToScrollingPoint_System_Windows_Point_System_Int32_) method by passing the page point and page number as input parameters. The following code example explains how to convert a shape annotation’s position in the page coordinates to a scroll point in the PDF Viewer.
{% tabs %}
{% highlight c# %}
@@ -123,7 +123,7 @@ private void PdfViewer_ShapeAnnotationChanged(object sender, ShapeAnnotationChan
## Bring a particular region into view
-The user can bring the given rectangular region into view and zoom in to the document to fit the region in the PDF Viewer's client area (viewport) using the `ZoomToRect` method by passing the rectangular region as an input parameter. The following code snippet explains how to bring a particular region into view.
+The user can bring the given rectangular region into view and zoom in to the document to fit the region in the PDF Viewer's client area (viewport) using the [ZoomToRect](https://help.syncfusion.com/cr/wpf/Syncfusion.Windows.PdfViewer.PdfViewerControl.html#Syncfusion_Windows_PdfViewer_PdfViewerControl_ZoomToRect_System_Windows_Rect_) method by passing the rectangular region as an input parameter. The following code snippet explains how to bring a particular region into view.
{% tabs %}
{% highlight c# %}
diff --git a/wpf/Pdf-Viewer/Working-with-Annotations/File-Link-Annotation.md b/wpf/Pdf-Viewer/Working-with-Annotations/File-Link-Annotation.md
index 9baac1a473..446ed7ed62 100644
--- a/wpf/Pdf-Viewer/Working-with-Annotations/File-Link-Annotation.md
+++ b/wpf/Pdf-Viewer/Working-with-Annotations/File-Link-Annotation.md
@@ -1,7 +1,7 @@
---
layout: post
-title: File Link Annotation in WPF Pdf Viewer control | Syncfusion®;
-description: Learn about File Link Annotation support in Syncfusion®; Essential Studio®; WPF Pdf Viewer control, its elements and more.
+title: File Link Annotation in WPF Pdf Viewer control | Syncfusion®
+description: Learn about File Link Annotation support in Syncfusion® Essential Studio® WPF Pdf Viewer control, its elements and more.
platform: wpf
control: PDF Viewer
documentation: ug
@@ -13,7 +13,7 @@ The PDF viewer supports file link annotations, which means that if you open a PD
## How to obtain the details of the of the annotation and the file linked with the annotation?
-The `FileLinkAnnotationClicked` event will be raised when you click the annotation in PDF pages. Refer to the following code example to wire the `FileLinkAnnotationClicked` event with the PDF Viewer.
+The [FileLinkAnnotationClicked](https://help.syncfusion.com/cr/wpf/Syncfusion.Windows.PdfViewer.PdfViewerControl.html#Syncfusion_Windows_PdfViewer_PdfViewerControl_FileLinkAnnotationClicked) event will be raised when you click the annotation in PDF pages. Refer to the following code example to wire the `FileLinkAnnotationClicked` event with the PDF Viewer.
{% tabs %}
{% highlight C# %}
@@ -23,9 +23,9 @@ pdfViewer.FileLinkAnnotationClicked += PdfViewer_FileLinkAnnotationClicked;
{% endhighlight %}
{% endtabs %}
-Using the `FileLinkAnnotationClickedEventArgs`, you can obtain the page number, bounds of the annotation through the ‘PageNumber’ and ‘Bounds’ properties respectively.
+Using the [FileLinkAnnotationClickedEventArgs](https://help.syncfusion.com/cr/wpf/Syncfusion.Windows.PdfViewer.FileLinkAnnotationClickedEventArgs.html) you can obtain the page number, bounds of the annotation through the [PageNumber](https://help.syncfusion.com/cr/wpf/Syncfusion.Windows.PdfViewer.FileLinkAnnotationClickedEventArgs.html#Syncfusion_Windows_PdfViewer_FileLinkAnnotationClickedEventArgs_PageNumber) and [Bounds](https://help.syncfusion.com/cr/wpf/Syncfusion.Windows.PdfViewer.FileLinkAnnotationClickedEventArgs.html#Syncfusion_Windows_PdfViewer_FileLinkAnnotationClickedEventArgs_Bounds) properties respectively.
-Similarly, you can obtain the details of the file linked with the annotation using the `Settings` property in the `FileLinkAnnotationClickedEventArgs`. Refer to the following code example to obtain the details of the of the annotation and the file linked with the annotation
+Similarly, you can obtain the details of the file linked with the annotation using the [Settings](https://help.syncfusion.com/cr/wpf/Syncfusion.Windows.PdfViewer.FileLinkAnnotationClickedEventArgs.html#Syncfusion_Windows_PdfViewer_FileLinkAnnotationClickedEventArgs_Settings) property in the [FileLinkAnnotationClickedEventArgs](https://help.syncfusion.com/cr/wpf/Syncfusion.Windows.PdfViewer.FileLinkAnnotationClickedEventArgs.html). Refer to the following code example to obtain the details of the of the annotation and the file linked with the annotation
{% tabs %}
{% highlight C# %}
diff --git a/wpf/Pdf-Viewer/Working-with-Annotations/Stamp-Annotation.md b/wpf/Pdf-Viewer/Working-with-Annotations/Stamp-Annotation.md
index 209e8a6635..166222f84f 100644
--- a/wpf/Pdf-Viewer/Working-with-Annotations/Stamp-Annotation.md
+++ b/wpf/Pdf-Viewer/Working-with-Annotations/Stamp-Annotation.md
@@ -296,7 +296,7 @@ The PdfViewerControl notifies through events, when `AnnotationChangedAction` suc
### StampAnnotationChanged Event
-The `StampAnnotationChanged` event occurs when the `Action` performed in stamp annotation. It provides the common information and annotation properties which are available in `Settings` through the `StampAnnotationChangedEventArgs`. The user can modify the annotation properties through ‘Settings`.
+The [StampAnnotationChanged](https://help.syncfusion.com/cr/wpf/Syncfusion.Windows.PdfViewer.PdfViewerControl.html#Syncfusion_Windows_PdfViewer_PdfViewerControl_StampAnnotationChanged) event occurs when the [Action](https://help.syncfusion.com/cr/wpf/Syncfusion.Windows.PdfViewer.AnnotationChangedEventArgs.html#Syncfusion_Windows_PdfViewer_AnnotationChangedEventArgs_Action) performed in stamp annotation. It provides the common information and annotation properties which are available in `Settings` through the [StampAnnotationChangedEventArgs](https://help.syncfusion.com/cr/wpf/Syncfusion.Windows.PdfViewer.StampAnnotationChangedEventArgs.html). The user can modify the annotation properties through [Settings](https://help.syncfusion.com/cr/wpf/Syncfusion.Windows.PdfViewer.StampAnnotationChangedEventArgs.html#Syncfusion_Windows_PdfViewer_StampAnnotationChangedEventArgs_Settings).
The following code shows how to write the StampAnnotationChanged event in PdfViewerControl
diff --git a/wpf/Pdf-Viewer/Working-with-Annotations/Sticky-Note-Annotation.md b/wpf/Pdf-Viewer/Working-with-Annotations/Sticky-Note-Annotation.md
index 94c791b120..423aa7df71 100644
--- a/wpf/Pdf-Viewer/Working-with-Annotations/Sticky-Note-Annotation.md
+++ b/wpf/Pdf-Viewer/Working-with-Annotations/Sticky-Note-Annotation.md
@@ -1,7 +1,7 @@
---
layout: post
-title: Sticky Note Annotation in WPF Pdf Viewer control | Syncfusion®;
-description: Learn about Sticky Note Annotation support in Syncfusion®; Essential Studio®; WPF Pdf Viewer control, its elements and more.
+title: Sticky Note Annotation in WPF Pdf Viewer control | Syncfusion®
+description: Learn about Sticky Note Annotation support in Syncfusion® Essential Studio® WPF Pdf Viewer control, its elements and more.
platform: wpf
control: PDF Viewer
documentation: ug
@@ -273,7 +273,7 @@ The PdfViewerControl notifies through events, when `AnnotationChangedAction` suc
### StickyNoteAnnotationChanged Event
-The `StickyNoteAnnotationChanged` event occurs when the `Action` performed in sticky note annotation. It provides the common information and annotation properties which are available in `Settings` through the `StickyNoteAnnotationChangedEventArgs`. The user can modify the annotation properties through ‘Settings`.
+The [StickyNoteAnnotationChanged](https://help.syncfusion.com/cr/wpf/Syncfusion.Windows.PdfViewer.PdfViewerControl.html#Syncfusion_Windows_PdfViewer_PdfViewerControl_StickyNoteAnnotationChanged) event occurs when the [Action](https://help.syncfusion.com/cr/wpf/Syncfusion.Windows.PdfViewer.AnnotationChangedEventArgs.html#Syncfusion_Windows_PdfViewer_AnnotationChangedEventArgs_Action) performed in sticky note annotation. It provides the common information and annotation properties which are available in `Settings` through the [StickyNoteAnnotationChangedEventArgs](https://help.syncfusion.com/cr/wpf/Syncfusion.Windows.PdfViewer.StickyNoteAnnotationChangedEventArgs.html). The user can modify the annotation properties through [Settings](https://help.syncfusion.com/cr/wpf/Syncfusion.Windows.PdfViewer.StickyNoteAnnotationChangedEventArgs.html#Syncfusion_Windows_PdfViewer_StickyNoteAnnotationChangedEventArgs_Settings).
The following code shows how to write the StickyNoteAnnotationChanged event in PdfViewerControl
diff --git a/wpf/Pdf-Viewer/Working-with-Annotations/Text-Annotation.md b/wpf/Pdf-Viewer/Working-with-Annotations/Text-Annotation.md
index db3607a771..ccf3978061 100644
--- a/wpf/Pdf-Viewer/Working-with-Annotations/Text-Annotation.md
+++ b/wpf/Pdf-Viewer/Working-with-Annotations/Text-Annotation.md
@@ -1,7 +1,7 @@
---
layout: post
-title: Text Annotation in WPF Pdf Viewer control | Syncfusion®;
-description: Learn about Text Annotation support in Syncfusion®; Essential Studio®; WPF Pdf Viewer control, its elements and more.
+title: Text Annotation in WPF Pdf Viewer control | Syncfusion®
+description: Learn about Text Annotation support in Syncfusion® Essential Studio® WPF Pdf Viewer control, its elements and more.
platform: wpf
control: PDF Viewer
documentation: ug
@@ -252,7 +252,7 @@ The PdfViewerControl notifies through events, when `AnnotationChangedAction` suc
### FreeTextAnnotationChanged Event
-The `FreeTextAnnotationChanged` event occurs when the `Action` performed in free text annotation. It provides the common information and annotation properties which are available in `Settings` through the `FreeTextAnnotationChangedEventArgs`. The user can modify the annotation properties through ‘Settings’.
+The [FreeTextAnnotationChanged](https://help.syncfusion.com/cr/wpf/Syncfusion.Windows.PdfViewer.PdfViewerControl.html#Syncfusion_Windows_PdfViewer_PdfViewerControl_FreeTextAnnotationChanged) event occurs when the [Action](https://help.syncfusion.com/cr/wpf/Syncfusion.Windows.PdfViewer.AnnotationChangedEventArgs.html#Syncfusion_Windows_PdfViewer_AnnotationChangedEventArgs_Action) performed in free text annotation. It provides the common information and annotation properties which are available in `Settings` through the [FreeTextAnnotationChangedEventArgs](https://help.syncfusion.com/cr/wpf/Syncfusion.Windows.PdfViewer.FreeTextAnnotationChangedEventArgs.html). The user can modify the annotation properties through [Settings](https://help.syncfusion.com/cr/wpf/Syncfusion.Windows.PdfViewer.FreeTextAnnotationChangedEventArgs.html#Syncfusion_Windows_PdfViewer_FreeTextAnnotationChangedEventArgs_Settings).
The following code shows how to write the FreeTextAnnotationChanged event in PdfViewerControl
diff --git a/wpf/Pdf-Viewer/Working-with-Annotations/Text-Callout-Annotation.md b/wpf/Pdf-Viewer/Working-with-Annotations/Text-Callout-Annotation.md
index e124431164..2bd3e1e301 100644
--- a/wpf/Pdf-Viewer/Working-with-Annotations/Text-Callout-Annotation.md
+++ b/wpf/Pdf-Viewer/Working-with-Annotations/Text-Callout-Annotation.md
@@ -1,7 +1,7 @@
---
layout: post
-title: Free Text Callout Annotation in WPF Pdf Viewer control | Syncfusion®;
-description: Learn about Text Annotation support in Syncfusion®; Essential Studio®; WPF Pdf Viewer control, its elements and more.
+title: Text Callout Annotation in WPF Pdf Viewer control | Syncfusion®
+description: Learn about Text Annotation support in Syncfusion® Essential Studio® WPF Pdf Viewer control, its elements and more.
platform: wpf
control: PDF Viewer
documentation: ug
@@ -262,7 +262,7 @@ The PdfViewerControl notifies through events when `AnnotationChangedAction` such
### FreeTextAnnotationChanged Event
-The `FreeTextAnnotationChanged` event occurs when the `Action` is performed in free text annotation. It provides the common information and annotation properties available in `Settings` through the `FreeTextAnnotationChangedEventArgs`. The user can modify the annotation properties through ‘Settings’.
+The [FreeTextAnnotationChanged](https://help.syncfusion.com/cr/wpf/Syncfusion.Windows.PdfViewer.PdfViewerControl.html#Syncfusion_Windows_PdfViewer_PdfViewerControl_FreeTextAnnotationChanged) event occurs when the [Action](https://help.syncfusion.com/cr/wpf/Syncfusion.Windows.PdfViewer.AnnotationChangedEventArgs.html#Syncfusion_Windows_PdfViewer_AnnotationChangedEventArgs_Action) is performed in free text annotation. It provides the common information and annotation properties available in `Settings` through the [FreeTextAnnotationChangedEventArgs](https://help.syncfusion.com/cr/wpf/Syncfusion.Windows.PdfViewer.FreeTextAnnotationChangedEventArgs.html). The user can modify the annotation properties through [Settings](https://help.syncfusion.com/cr/wpf/Syncfusion.Windows.PdfViewer.FreeTextAnnotationChangedEventArgs.html#Syncfusion_Windows_PdfViewer_FreeTextAnnotationChangedEventArgs_Settings).
The following code shows how to write the FreeTextAnnotationChanged event in PdfViewerControl
diff --git a/wpf/Pdf-Viewer/Working-with-Annotations/Working-with-Annotations-Programmatically.md b/wpf/Pdf-Viewer/Working-with-Annotations/Working-with-Annotations-Programmatically.md
index 20e437f996..1fe26e9bcd 100644
--- a/wpf/Pdf-Viewer/Working-with-Annotations/Working-with-Annotations-Programmatically.md
+++ b/wpf/Pdf-Viewer/Working-with-Annotations/Working-with-Annotations-Programmatically.md
@@ -1,6 +1,6 @@
---
layout: post
-title: Working with annotations using WPF PDF Viewer | Syncfusion®;
+title: Working with annotations using WPF PDF Viewer | Syncfusion®
description: Learn about Selecting and Modifying the annotation's properties programmatically using WPF Pdf Viewer.
platform: wpf
control: PDF Viewer
@@ -270,7 +270,7 @@ private void ModifyAnnotation()
## Hide an annotation
-PDF Viewer allows the user to hide the annotation programmatically without user interaction. This functionality returns true if any annotation is found and hidden, otherwise it returns false. The annotation [Name](https://help.syncfusion.com/cr/wpf/Syncfusion.Windows.PdfViewer.AnnotationChangedEventArgs.html#Syncfusion_Windows_PdfViewer_AnnotationChangedEventArgs_Name) property is used to identify the annotation. Refer this [UG link](https://help.syncfusion.com/wpf/pdf-viewer/working-with-annotations/select-and-modify-annotations#how-to-get-and-set-name-of-an-annotation) to get and set an annotation Name property.
+PDF Viewer allows the user to hide the annotation programmatically without user interaction. This functionality returns true if any annotation is found and hidden, otherwise it returns false. The annotation [Name](https://help.syncfusion.com/cr/wpf/Syncfusion.Windows.PdfViewer.AnnotationChangedEventArgs.html#Syncfusion_Windows_PdfViewer_AnnotationChangedEventArgs_Name) property is used to identify the annotation. Refer this [UG link](https://help.syncfusion.com/wpf/pdf-viewer/working-with-annotations/working-with-annotations-programmatically#get-and-set-annotations-name) to get and set an annotation Name property.
N> If there are multiple annotations with the same name in the document, it will hide the first one.
@@ -315,7 +315,7 @@ N> Similarly, we can implement it for all other annotations.
## Show an annotation
-PDF Viewer allows the user to show the hidden annotation programmatically without user interaction. This functionality returns true if any annotation is found and shown, otherwise it returns false. The annotation [Name](https://help.syncfusion.com/cr/wpf/Syncfusion.Windows.PdfViewer.AnnotationChangedEventArgs.html#Syncfusion_Windows_PdfViewer_AnnotationChangedEventArgs_Name) property is used to identify the annotation. Refer this [UG link](https://help.syncfusion.com/wpf/pdf-viewer/working-with-annotations/select-and-modify-annotations#how-to-get-and-set-name-of-an-annotation) to get and set an annotation Name property.
+PDF Viewer allows the user to show the hidden annotation programmatically without user interaction. This functionality returns true if any annotation is found and shown, otherwise it returns false. The annotation [Name](https://help.syncfusion.com/cr/wpf/Syncfusion.Windows.PdfViewer.AnnotationChangedEventArgs.html#Syncfusion_Windows_PdfViewer_AnnotationChangedEventArgs_Name) property is used to identify the annotation. Refer this [UG link](https://help.syncfusion.com/wpf/pdf-viewer/working-with-annotations/working-with-annotations-programmatically#get-and-set-annotations-name) to get and set an annotation Name property.
N> If there are multiple annotations with the same name in the document, it will show the first one.
@@ -360,7 +360,7 @@ N> Similarly, we can implement it for all other annotations.
## Delete an annotation
-PDF Viewer allows the user to delete an annotation programmatically without user interaction. This functionality returns true if any annotation is found and deleted, otherwise it returns false. The annotation [Name](https://help.syncfusion.com/cr/wpf/Syncfusion.Windows.PdfViewer.AnnotationChangedEventArgs.html#Syncfusion_Windows_PdfViewer_AnnotationChangedEventArgs_Name) property is used to identify the annotation. Refer this [UG link](https://help.syncfusion.com/wpf/pdf-viewer/working-with-annotations/select-and-modify-annotations#how-to-get-and-set-name-of-an-annotation) to get and set an annotation Name property.
+PDF Viewer allows the user to delete an annotation programmatically without user interaction. This functionality returns true if any annotation is found and deleted, otherwise it returns false. The annotation [Name](https://help.syncfusion.com/cr/wpf/Syncfusion.Windows.PdfViewer.AnnotationChangedEventArgs.html#Syncfusion_Windows_PdfViewer_AnnotationChangedEventArgs_Name) property is used to identify the annotation. Refer this [UG link](https://help.syncfusion.com/wpf/pdf-viewer/working-with-annotations/working-with-annotations-programmatically#get-and-set-annotations-name) to get and set an annotation Name property.
N> If there are multiple annotations with the same name in the document, it will delete the first one.
diff --git a/wpf/Pdf-Viewer/Working-with-Hyperlinks.md b/wpf/Pdf-Viewer/Working-with-Hyperlinks.md
index ec1fc1dcba..31e43135f7 100644
--- a/wpf/Pdf-Viewer/Working-with-Hyperlinks.md
+++ b/wpf/Pdf-Viewer/Working-with-Hyperlinks.md
@@ -1,7 +1,7 @@
---
layout: post
-title: Hyperlink Navigation in WPF Pdf Viewer control | Syncfusion®;
-description: Learn about Hyperlink Navigation support in Syncfusion®; Essential Studio® WPF Pdf Viewer control, its elements and more.
+title: Hyperlink Navigation in WPF Pdf Viewer control | Syncfusion®
+description: Learn about Hyperlink Navigation support in Syncfusion® Essential Studio® WPF Pdf Viewer control, its elements and more.
platform: wpf
control: PDF Viewer
documentation: ug
@@ -31,11 +31,11 @@ This event is triggered when the hyperlink in the PDF document is clicked.<
HyperlinkClickedEventArgs
-N> From the version 19.3, The `HyperLinkClickedEventArgs` is renamed to [HyperlinkClickedEventArgs](https://help.syncfusion.com/cr/wpf/Syncfusion.Windows.PdfViewer.HyperlinkClickedEventArgs.html). Also, We recommend you to use [HyperlinkClicked](https://help.syncfusion.com/cr/windowsforms/Syncfusion.Windows.Forms.PdfViewer.PdfViewerControl.HyperLinkClickedEventHandler.html) and [HyperlinkMouseOver](https://help.syncfusion.com/cr/wpf/Syncfusion.Windows.PdfViewer.PdfViewerControl.HyperLinkMouseOverEventHandler.html) events to notify when the hyperlink is clicked and when mouse is over the hyperlink respectively as shown in the above table.
+N> From the version 19.3, The `HyperLinkClickedEventArgs` is renamed to [HyperlinkClickedEventArgs](https://help.syncfusion.com/cr/wpf/Syncfusion.Windows.PdfViewer.HyperlinkClickedEventArgs.html). Also, We recommend you to use [HyperlinkClicked](https://help.syncfusion.com/cr/wpf/Syncfusion.Windows.PdfViewer.PdfViewerControl.html#Syncfusion_Windows_PdfViewer_PdfViewerControl_HyperlinkClicked) and [HyperlinkMouseOver](https://help.syncfusion.com/cr/wpf/Syncfusion.Windows.PdfViewer.PdfViewerControl.HyperLinkMouseOverEventHandler.html) events to notify when the hyperlink is clicked and when mouse is over the hyperlink respectively as shown in the above table.
## How to disable hyperlink navigation in PDF viewer control
-You can disable the hyperlink navigation in PDF viewer control by setting the value of [Handled](https://help.syncfusion.com/cr/wpf/Syncfusion.Windows.PdfViewer.HyperlinkClickedEventArgs.html#Syncfusion_Windows_PdfViewer_HyperlinkClickedEventArgs_Handled) in the [HyperlinkClickedEventArgs](https://help.syncfusion.com/cr/wpf/Syncfusion.Windows.PdfViewer.HyperlinkClickedEventArgs.html) parameter as true in the [HyperlinkClicked](https://help.syncfusion.com/cr/windowsforms/Syncfusion.Windows.Forms.PdfViewer.PdfViewerControl.HyperLinkClickedEventHandler.html) event which is available in the PdfViewerControl and PdfDocumentView class.
+You can disable the hyperlink navigation in PDF viewer control by setting the value of [Handled](https://help.syncfusion.com/cr/wpf/Syncfusion.Windows.PdfViewer.HyperlinkClickedEventArgs.html#Syncfusion_Windows_PdfViewer_HyperlinkClickedEventArgs_Handled) in the [HyperlinkClickedEventArgs](https://help.syncfusion.com/cr/wpf/Syncfusion.Windows.PdfViewer.HyperlinkClickedEventArgs.html) parameter as true in the [HyperlinkClicked](https://help.syncfusion.com/cr/wpf/Syncfusion.Windows.PdfViewer.PdfViewerControl.html#Syncfusion_Windows_PdfViewer_PdfViewerControl_HyperlinkClicked) event which is available in the PdfViewerControl and PdfDocumentView class.
Please refer to the following example for more details.
N> From the version 19.3, we have introduced [Handled](https://help.syncfusion.com/cr/wpf/Syncfusion.Windows.PdfViewer.HyperlinkClickedEventArgs.html#Syncfusion_Windows_PdfViewer_HyperlinkClickedEventArgs_Handled) property in the event arguments to disable the hyperlink navigation based on the standards. You need to change its value to `true` to disable the navigation.
diff --git a/wpf/Pdf-Viewer/Working-with-command-binding/Binding-commands-to-a-button.md b/wpf/Pdf-Viewer/Working-with-command-binding/Binding-commands-to-a-button.md
index 446caa9943..17b3c8baae 100644
--- a/wpf/Pdf-Viewer/Working-with-command-binding/Binding-commands-to-a-button.md
+++ b/wpf/Pdf-Viewer/Working-with-command-binding/Binding-commands-to-a-button.md
@@ -1,7 +1,7 @@
---
layout: post
-title: Working with Commands in WPF Pdf Viewer control | Syncfusion®;
-description: Learn about Working with Commands support in Syncfusion®; Essential Studio®; WPF Pdf Viewer control, its elements and more.
+title: Working with Commands in WPF Pdf Viewer control | Syncfusion®
+description: Learn about Working with Commands support in Syncfusion® Essential Studio® WPF Pdf Viewer control, its elements and more.
platform: wpf
control: PDF Viewer
documentation: ug
@@ -432,7 +432,7 @@ The following XAML code shows how to bind the [PrintCommand](https://help.syncfu
## Save Document Command
-You can save the PDF file in the given file path using the `SaveDocumentCommand`. The following code shows how to save the PDF file by executing the command and to the pass the file path as command parameter.
+You can save the PDF file in the given file path using the [SaveDocumentCommand](https://help.syncfusion.com/cr/wpf/Syncfusion.Windows.PdfViewer.PdfViewerControl.html#Syncfusion_Windows_PdfViewer_PdfViewerControl_SaveDocumentCommand). The following code shows how to save the PDF file by executing the command and to the pass the file path as command parameter.
{% tabs %}
{% highlight c# %}
diff --git a/wpf/Pdf-Viewer/password-protected-pdf-files.md b/wpf/Pdf-Viewer/password-protected-pdf-files.md
index 1c90e9723f..a4bc45ae61 100644
--- a/wpf/Pdf-Viewer/password-protected-pdf-files.md
+++ b/wpf/Pdf-Viewer/password-protected-pdf-files.md
@@ -1,7 +1,7 @@
---
layout: post
-title: Viewing Password protected PDF Files in WPF Pdf Viewer | Syncfusion®;
-description: Learn about Viewing Password protected PDF Files support in Syncfusion®; WPF Pdf Viewer control, its elements and more.
+title: View Password protected PDF Files in WPF Pdf Viewer | Syncfusion®
+description: Learn about Viewing Password protected PDF Files support in Syncfusion® WPF Pdf Viewer control, its elements and more.
platform: wpf
control: PDF Viewer
documentation: ug
@@ -9,7 +9,7 @@ documentation: ug
# Viewing Password protected PDF Files in WPF Pdf Viewer
-PDF Viewer allows you to view the password-protected PDF files by passing the file name and the correct password as parameters to the [Load](https://help.syncfusion.com/cr/wpf/Syncfusion.Windows.PdfViewer.PdfViewerControl.html#Syncfusion_Windows_PdfViewer_PdfViewerControl_Load_System_String_System_String_) method of [PdfViewerControl](https://help.syncfusion.com/cr/wpf/Syncfusion.Windows.PdfViewer.PdfViewerControl.html#Syncfusion_Windows_PdfViewer_PdfViewerControl_Load_System_String_System_String_). Refer to the following code to perform the same.
+PDF Viewer allows you to view the password-protected PDF files by passing the file name and the correct password as parameters to the [Load](https://help.syncfusion.com/cr/wpf/Syncfusion.Windows.PdfViewer.PdfViewerControl.html#Syncfusion_Windows_PdfViewer_PdfViewerControl_Load_System_String_System_String_) method of [PdfViewerControl](https://help.syncfusion.com/cr/wpf/Syncfusion.Windows.PdfViewer.PdfViewerControl.html). Refer to the following code to perform the same.
{% tabs %}
{% highlight c# %}