diff --git a/Document-Processing-toc.html b/Document-Processing-toc.html
index 9a1c4ae1a7..ed0678d737 100644
--- a/Document-Processing-toc.html
+++ b/Document-Processing-toc.html
@@ -2583,10 +2583,12 @@
Working with Hyperlinks
Bookmark Navigation
+ Table of Contents Navigation
Localization
Working with themes
Working with Interaction Modes
Working with ErrorOccured Event
+ Right to Left (RTL)
Magnifying PDF documents
How To
@@ -2697,6 +2699,7 @@
Working with Commands
Working With PDF Coordinates
+ Right to Left (RTL)
How to
diff --git a/Document-Processing/PDF/PDF-Viewer/winforms/Right-To-Left.md b/Document-Processing/PDF/PDF-Viewer/winforms/Right-To-Left.md
new file mode 100644
index 0000000000..0e306a7283
--- /dev/null
+++ b/Document-Processing/PDF/PDF-Viewer/winforms/Right-To-Left.md
@@ -0,0 +1,45 @@
+---
+layout: post
+title: RTL Support in WinForms PDF Viewer | Syncfusion®;
+description: Learn about Right to Left (RTL) support in Syncfusion®; WinForms Pdf Viewer control, its elements and more.
+platform: document-processing
+control: PDF Viewer
+documentation: ug
+---
+
+# Right to Left (RTL) in WinForms PDF Viewer
+
+The Syncfusion® WinForms PDF Viewer control supports right-to-left (RTL) rendering. All user interface elements are displayed based on left-to-right (LTR) or right-to-left (RTL) direction, ensuring proper layout and alignment for RTL languages.
+
+
+## Code Changes for Enabling RTL
+
+To enable RTL support in the WinForms PDF Viewer, set the `RightToLeft` property of the PDF viewer control to `Yes`. Refer the following code snippet.
+
+{% tabs %}
+{% highlight c# %}
+
+using System.Windows.Forms;
+
+namespace WindowsFormsApp_RTL
+{
+ public partial class Form1 : Form
+ {
+ public Form1()
+ {
+ InitializeComponent();
+
+ // Enable RTL layout for PDF Viewer control
+ pdfViewerControl1.RightToLeft = RightToLeft.Yes;
+ }
+ }
+}
+
+{% endhighlight %}
+{% endtabs %}
+
+The following screenshot shows the RTL-enabled PDF Viewer output
+
+
+
+N> The sample project to perform the operation is available in the [GitHub](https://github.com/SyncfusionExamples/WinForms-PDFViewer-Examples/tree/master/RTL).
\ No newline at end of file
diff --git a/Document-Processing/PDF/PDF-Viewer/winforms/TOC-Navigation.md b/Document-Processing/PDF/PDF-Viewer/winforms/TOC-Navigation.md
new file mode 100644
index 0000000000..403376fa53
--- /dev/null
+++ b/Document-Processing/PDF/PDF-Viewer/winforms/TOC-Navigation.md
@@ -0,0 +1,18 @@
+---
+layout: post
+title: TOC Navigation in WinForms PDF Viewer | Syncfusion®;
+description: Learn about Table of Contents Navigation support in Syncfusion®; WinForms Pdf Viewer control, its elements and more.
+platform: document-processing
+control: PDF Viewer
+documentation: ug
+---
+
+# Table of contents navigation in WinForms Pdf Viewer
+
+Table of contents navigation support in PDF Viewer control allows users to navigate to a particular destination of the contents present in the table of contents(TOC) of the loaded PDF document at UI level.
+
+
+
+For additional information about how the Table of contents navigation navigates to the destination location, please refer to the [bookmark feature](https://help.syncfusion.com/document-processing/pdf/pdf-viewer/winforms/bookmark-navigation) of the PDF Viewer.
+
+N> You can refer to our [WinForms PDF Viewer](https://www.syncfusion.com/pdf-viewer-sdk/winforms-pdf-viewer) feature tour page for its groundbreaking feature representations.
\ No newline at end of file
diff --git a/Document-Processing/PDF/PDF-Viewer/winforms/images/RTL.png b/Document-Processing/PDF/PDF-Viewer/winforms/images/RTL.png
new file mode 100644
index 0000000000..81883c5a45
Binary files /dev/null and b/Document-Processing/PDF/PDF-Viewer/winforms/images/RTL.png differ
diff --git a/Document-Processing/PDF/PDF-Viewer/winforms/images/Table-of-contents-navigation.png b/Document-Processing/PDF/PDF-Viewer/winforms/images/Table-of-contents-navigation.png
new file mode 100644
index 0000000000..538e24d53c
Binary files /dev/null and b/Document-Processing/PDF/PDF-Viewer/winforms/images/Table-of-contents-navigation.png differ
diff --git a/Document-Processing/PDF/PDF-Viewer/wpf/Right-To-Left.md b/Document-Processing/PDF/PDF-Viewer/wpf/Right-To-Left.md
new file mode 100644
index 0000000000..a6c536bc71
--- /dev/null
+++ b/Document-Processing/PDF/PDF-Viewer/wpf/Right-To-Left.md
@@ -0,0 +1,60 @@
+---
+layout: post
+title: RTL Support in WPF PDF Viewer | Syncfusion®;
+description: Learn about Right to Left (RTL) support in Syncfusion®; WPF Pdf Viewer control, its elements and more.
+platform: document-processing
+control: PDF Viewer
+documentation: ug
+---
+
+# Right to Left (RTL) in WPF PDF Viewer
+
+The Syncfusion® WPF PDF Viewer control supports right-to-left (RTL) rendering. All user interface elements are displayed based on left-to-right (LTR) or right-to-left (RTL) direction, ensuring proper layout and alignment for RTL languages.
+
+## Enabling RTL in WPF PDF Viewer
+
+RTL can be configured in the WPF PDF Viewer using the `FlowDirection` property. This can be set either in **XAML** or in the **code-behind (C#)**.
+
+## Configuring RTL in XAML
+
+RTL can be enabled in XAML by setting the `FlowDirection` property to `RightToLeft`.
+
+
+{% tabs %}
+{% highlight xaml %}
+
+
+
+
+
+{% endhighlight %}
+{% endtabs %}
+
+
+## Configuring RTL in Code-Behind (C#)
+
+RTL can also be configured programmatically by setting the `FlowDirection` property in the code-behind. Refer the following code snippet.
+
+{% tabs %}
+{% highlight c# %}
+
+namespace RTLSample
+{
+ public partial class MainWindow : Window
+ {
+ public MainWindow()
+ {
+ InitializeComponent();
+ pdfViewer.FlowDirection = FlowDirection.RightToLeft;
+ pdfViewer.Load("../../../Data/RTLText.pdf");
+
+ }
+ }
+}
+
+{% endhighlight %}
+{% endtabs %}
+
+
+
+N> The sample project to perform the operation is available in the [GitHub](https://github.com/SyncfusionExamples/WPF-PDFViewer-Examples/tree/master/RTL).
\ No newline at end of file
diff --git a/Document-Processing/PDF/PDF-Viewer/wpf/images/RTL.png b/Document-Processing/PDF/PDF-Viewer/wpf/images/RTL.png
new file mode 100644
index 0000000000..cc25ddb253
Binary files /dev/null and b/Document-Processing/PDF/PDF-Viewer/wpf/images/RTL.png differ