diff --git a/ej2-asp-core-mvc/pdfviewer/EJ2_ASP.MVC/how-to/extract-text-completed.md b/ej2-asp-core-mvc/pdfviewer/EJ2_ASP.MVC/how-to/extract-text-completed.md
new file mode 100644
index 0000000000..5c42b9f23a
--- /dev/null
+++ b/ej2-asp-core-mvc/pdfviewer/EJ2_ASP.MVC/how-to/extract-text-completed.md
@@ -0,0 +1,64 @@
+---
+layout: post
+title: extractTextCompleted Event in EJ2 ASP.NET MVC PDF Viewer | Syncfusion
+description: Learn here all about extractTextCompleted Event in ASP.NET MVC PDF Viewer component of Syncfusion Essential JS 2 and more.
+platform: ej2-asp-core-mvc
+control: PDF Viewer
+publishingplatform: ##Platform_Name##
+documentation: ug
+---
+
+# Extract text using extractTextCompleted Event
+
+The PDF Viewer library allows you to extract the text from a page along with the bounds. Text extraction can be done using the **isExtractText** property and [**extractTextCompleted**](https://help.syncfusion.com/cr/aspnetcore-js2/Syncfusion.EJ2.PdfViewer.PdfViewer.html#Syncfusion_EJ2_PdfViewer_PdfViewer_ExtractTextCompleted) event. `extractTextCompleted` event Triggers when an text extraction is completed in the PDF Viewer.
+
+Here is an example of how you can use the extractTextCompleted event:
+
+{% tabs %}
+{% highlight cshtml tabtitle="Standalone" %}
+
+@using Syncfusion.EJ2
+@{
+ ViewBag.Title = "Home Page";
+}
+
+
+
+
+
+
+
+
+{% endhighlight %}
+{% endtabs %}
+
+[View sample in GitHub](https://github.com/SyncfusionExamples/mvc-pdf-viewer-examples/tree/master/How%20to)
diff --git a/ej2-asp-core-mvc/pdfviewer/EJ2_ASP.MVC/how-to/extract-text-option.md b/ej2-asp-core-mvc/pdfviewer/EJ2_ASP.MVC/how-to/extract-text-option.md
new file mode 100644
index 0000000000..fd1c10e36b
--- /dev/null
+++ b/ej2-asp-core-mvc/pdfviewer/EJ2_ASP.MVC/how-to/extract-text-option.md
@@ -0,0 +1,65 @@
+---
+layout: post
+title: Extract text Option in EJ2 ASP.NET MVC PDF Viewer | Syncfusion
+description: Learn here all about Extract text Option in ASP.NET MVC PDF Viewer component of Syncfusion Essential JS 2 and more.
+platform: ej2-asp-core-mvc
+control: PDF Viewer
+publishingplatform: ##Platform_Name##
+documentation: ug
+---
+
+# Extract Text Option in Syncfusion PDF Viewer
+
+The `extractTextOption` property in the Syncfusion PdfViewer control allows you to optimize memory usage by controlling the level of text extraction. This setting influences the data returned in the `extractTextCompleted` event. You can select one of the following options to determine the kind of text extraction and layout information to retrieve.
+
+### Available Options:
+
+**None:** No text information is extracted or returned. This is useful when you want to optimize memory usage and don't need any text data.
+
+**TextOnly:** Extracts only the plain text from the document. This option excludes any layout or positional information.
+
+**BoundsOnly:** Extracts layout information, such as bounds or coordinates, without including the plain text data.
+
+**TextAndBounds:** Extracts both the plain text and the layout (bounds) information, which is the default behavior.
+
+The following example demonstrates how to configure the `extractTextOption` property to control the level of text extraction:
+
+
+
+{% tabs %}
+{% highlight html tabtitle="Standalone" %}
+
+@using Syncfusion.EJ2
+@{
+ ViewBag.Title = "Home Page";
+}
+
+
+
+
+
+
+
+{% endhighlight %}
+{% endtabs %}
+
+### Description of Each Option
+**extractTextOption.TextAndBounds (default):** This option returns both plain text and its positional data (bounds). Use this option when you need to access both the content of the PDF and its layout for further processing or analysis.
+
+**extractTextOption.TextOnly:** This option returns only the plain text from the PDF. No positional or layout data is included. Note that when using this option, text search functionality will be disabled. In such cases, it is recommended to use findTextAsync for text searching.
+
+**extractTextOption.BoundsOnly:** This option returns only the layout information (bounds) of the text, excluding the actual content. It is useful when the focus is on the position of text elements rather than the text itself.
+
+**extractTextOption.None:** This option does not extract or return any text or layout information. It is used to optimize memory usage when no text extraction is necessary. This setting is only relevant for the `extractTextCompleted` event and cannot be used with the `ExtractText` method.
+
+N> Text Search: When using the `extractTextOption.TextOnly` and `extractTextOption.None` option, the findText method will not work. Instead, you should use the findTextAsync method to perform text searches asynchronously.
+
+[View sample in GitHub](https://github.com/SyncfusionExamples/mvc-pdf-viewer-examples/tree/master/How%20to)
\ No newline at end of file
diff --git a/ej2-asp-core-mvc/pdfviewer/EJ2_ASP.MVC/how-to/extract-text.md b/ej2-asp-core-mvc/pdfviewer/EJ2_ASP.MVC/how-to/extract-text.md
index a502f66ce1..9d4407f038 100644
--- a/ej2-asp-core-mvc/pdfviewer/EJ2_ASP.MVC/how-to/extract-text.md
+++ b/ej2-asp-core-mvc/pdfviewer/EJ2_ASP.MVC/how-to/extract-text.md
@@ -1,6 +1,6 @@
---
layout: post
-title: Extract Text in ##Platform_Name## Pdfviewer Component
+title: Extract Text in Syncfusion ##Platform_Name## Pdfviewer Component
description: Learn here all about Extract Text in Syncfusion ##Platform_Name## Pdfviewer component of Syncfusion Essential JS 2 and more.
platform: ej2-asp-core-mvc
control: Extract Text
@@ -9,6 +9,7 @@ documentation: ug
---
# Extract Text from PDF document
+## Extract Text in server backed mode.
The PDF Viewer server library allows you to extract the text from a page along with the bounds. Text extracting can be done using the ExtractText() method. Add the following dependency to your application using the `NuGet Package Manager`.
* Syncfusion.EJ2.PdfViewer.AspNet.Mvc5
@@ -33,4 +34,78 @@ System.IO.File.WriteAllText("../../Data/data.txt", text);
Sample:
[https://www.syncfusion.com/downloads/support/directtrac/general/ze/ExtractText853154752](https://www.syncfusion.com/downloads/support/directtrac/general/ze/ExtractText853154752)
-N>Ensure the provided document path and output text saved locations in your application level.
\ No newline at end of file
+N>Ensure the provided document path and output text saved locations in your application level.
+
+## Extract Text Method in standalone mode
+
+The `extractText` method of the Syncfusion PdfViewer control enables text extraction from one or more pages in a PDF document. This method is useful for retrieving the text content along with its associated data, such as the bounds of each text element.
+
+### extractText Method
+The extractText method retrieves text data from the specified page(s) of a PDF document. It can extract text from one page, a range of pages, or even provide detailed text data, depending on the options specified.
+
+#### Parameters:
+**startIndex:** The starting page index for text extraction (0-based index).
+
+**endIndex Or isOptions:** This can either be the ending page index for the text extraction (for extracting from multiple pages) or an option specifying text extraction criteria for a single page.
+
+**options (optional):** Specifies additional options, such as extracting plain text `TextOnly` or more detailed text data `TextAndBounds`. You can specify various options for text extraction. These options determine whether you want to extract plain text, text with bounds, or detailed text data.
+
+***TextOnly:*** Extracts only the plain text content without bounds or additional information.
+
+***TextAndBounds:*** Extracts text content along with its bounds (coordinates) within the PDF.
+
+#### Returns:
+The method returns a Promise that resolves to an object containing two properties:
+
+**textData:** An array of TextDataSettingsModel objects, each representing the details of the extracted text (including bounds, page text, etc.).
+
+**pageText:** A concatenated string of plain text extracted from the specified page(s).
+
+### Usage of extractText in Syncfusion PdfViewer Control
+Here is an example that demonstrates how to use the extractText method:
+
+{% tabs %}
+{% highlight cshtml tabtitle="Standalone" %}
+
+@using Syncfusion.EJ2
+@{
+ ViewBag.Title = "Home Page";
+}
+
+
+
+
+
+
+
+
+{% endhighlight %}
+{% endtabs %}
+
+#### Explanation:
+**Single Page Extraction:** The first `extractText` call extracts text from page 1 (`startIndex = 1`), using the 'TextOnly' option for plain text extraction.
+
+**Multiple Pages Extraction:** The second extractText call extracts text from pages 0 through 2 (`startIndex = 0, endIndex = 2`), using the `TextOnly` option for plain text extraction.
+
+[View sample in GitHub](https://github.com/SyncfusionExamples/mvc-pdf-viewer-examples/tree/master/How%20to)
\ No newline at end of file
diff --git a/ej2-asp-core-mvc/pdfviewer/EJ2_ASP.MVC/how-to/find-text-async.md b/ej2-asp-core-mvc/pdfviewer/EJ2_ASP.MVC/how-to/find-text-async.md
new file mode 100644
index 0000000000..c17c8aef93
--- /dev/null
+++ b/ej2-asp-core-mvc/pdfviewer/EJ2_ASP.MVC/how-to/find-text-async.md
@@ -0,0 +1,92 @@
+---
+layout: post
+title: Find Text Async in EJ2 ASP.NET MVC PDF Viewer | Syncfusion
+description: Learn about the `findTextAsync` in ASP.NET MVC PDF Viewer component of Syncfusion Essential JS 2 and more.
+platform: ej2-asp-core-mvc
+control: PDF Viewer
+publishingplatform: ##Platform_Name##
+documentation: ug
+---
+
+# Find Text using findTextAsync Method in Syncfusion PdfViewer
+
+The findTextAsync method in the Syncfusion PdfViewer control allows you to search for specific text or an array of strings asynchronously within a PDF document. The method returns the bounding rectangles for each occurrence of the search term, allowing you to find and work with text positions in the document.
+
+Here is an example of how you can use the **findTextAsync** method:
+
+
+{% tabs %}
+{% highlight cshtml tabtitle="Standalone" %}
+
+@using Syncfusion.EJ2
+@{
+ ViewBag.Title = "Home Page";
+}
+
+
+
+
+
+
+
+{% endhighlight %}
+{% endtabs %}
+
+### Description:
+
+The `findTextAsync` method is designed for performing an asynchronous text search within a PDF document. You can use it to search for a single string or multiple strings, with the ability to control case sensitivity. By default, the search is applied to all pages of the document. However, you can adjust this behavior by specifying the page number (pageIndex), which allows you to search only a specific page if needed.
+
+### Parameters:
+
+**text (string | string[]):**
+
+The text or an array of texts you want to search for in the document.
+
+**matchCase (boolean):**
+
+Indicates whether the search should be case-sensitive.
+When set to true, the search will match the exact case.
+When set to false, the search will ignore case differences.
+
+**pageIndex (optional, number):**
+
+Specifies the page number (zero-based index) to search within the document.
+If not provided, the search will be performed across all pages in the document.
+For example, passing 0 would search only the first page of the document.
+
+### Example Workflow:
+
+**findTextAsync('pdf', false):**
+This will search for the term "pdf" in a case-insensitive manner across all pages of the document.
+
+**findTextAsync(['pdf', 'the'], false):**
+This will search for the terms "pdf" and "the" in a case-insensitive manner across all pages of the document.
+
+**findTextAsync('pdf', false, 0):**
+This will search for the term "pdf" in a case-insensitive manner only on the first page (page 0).
+
+**findTextAsync(['pdf', 'the'], false, 1):**
+This will search for the terms "pdf" and "the" in a case-insensitive manner only on the second page (page 1).
+
+[View sample in GitHub](https://github.com/SyncfusionExamples/mvc-pdf-viewer-examples/tree/master/How%20to)
\ No newline at end of file
diff --git a/ej2-asp-core-mvc/pdfviewer/EJ2_ASP.NETCORE/how-to/extract-text-completed.md b/ej2-asp-core-mvc/pdfviewer/EJ2_ASP.NETCORE/how-to/extract-text-completed.md
new file mode 100644
index 0000000000..16fbf47cc9
--- /dev/null
+++ b/ej2-asp-core-mvc/pdfviewer/EJ2_ASP.NETCORE/how-to/extract-text-completed.md
@@ -0,0 +1,52 @@
+---
+layout: post
+title: extractTextCompleted Event in Syncfusion ##Platform_Name## Pdfviewer Component
+description: Learn here all about extractTextCompleted Event in Syncfusion ##Platform_Name## Pdfviewer component of Syncfusion Essential JS 2 and more.
+platform: ej2-asp-core-mvc
+control: Extract Text Completed
+publishingplatform: ##Platform_Name##
+documentation: ug
+---
+
+# Extract text using extractTextCompleted Event
+
+The PDF Viewer library allows you to extract the text from a page along with the bounds. Text extraction can be done using the **isExtractText** property and [**extractTextCompleted**](https://help.syncfusion.com/cr/aspnetcore-js2/Syncfusion.EJ2.PdfViewer.PdfViewer.html#Syncfusion_EJ2_PdfViewer_PdfViewer_ExtractTextCompleted) event. `extractTextCompleted` event Triggers when an text extraction is completed in the PDF Viewer.
+
+Here is an example of how you can use the extractTextCompleted event:
+
+{% tabs %}
+{% highlight cshtml tabtitle="Standalone" %}
+
+page "{handler?}"
+@model IndexModel
+@{
+ ViewData["Title"] = "Home page";
+}
+
+
+
+
+
+
+
+
+{% endhighlight %}
+{% endtabs %}
+
+[View sample in GitHub](https://github.com/SyncfusionExamples/asp-core-pdf-viewer-examples/tree/master/How%20to)
\ No newline at end of file
diff --git a/ej2-asp-core-mvc/pdfviewer/EJ2_ASP.NETCORE/how-to/extract-text-option.md b/ej2-asp-core-mvc/pdfviewer/EJ2_ASP.NETCORE/how-to/extract-text-option.md
new file mode 100644
index 0000000000..ccde319baf
--- /dev/null
+++ b/ej2-asp-core-mvc/pdfviewer/EJ2_ASP.NETCORE/how-to/extract-text-option.md
@@ -0,0 +1,61 @@
+---
+layout: post
+title: Extract text Option in ASP.NET Core PDF Viewer Control | Syncfusion
+description: Learn here all about Extract text Option in Syncfusion ##Platform_Name## Pdfviewer component of Syncfusion Essential JS 2 and more.
+platform: ej2-asp-core-mvc
+control: PDF Viewer
+documentation: ug
+domainurl: ##DomainURL##
+---
+
+# Extract Text Option in Syncfusion PDF Viewer
+
+The `extractTextOption` property in the Syncfusion PdfViewer control allows you to optimize memory usage by controlling the level of text extraction. This setting influences the data returned in the `extractTextCompleted` event. You can select one of the following options to determine the kind of text extraction and layout information to retrieve.
+
+### Available Options:
+
+**None:** No text information is extracted or returned. This is useful when you want to optimize memory usage and don't need any text data.
+
+**TextOnly:** Extracts only the plain text from the document. This option excludes any layout or positional information.
+
+**BoundsOnly:** Extracts layout information, such as bounds or coordinates, without including the plain text data.
+
+**TextAndBounds:** Extracts both the plain text and the layout (bounds) information, which is the default behavior.
+
+The following example demonstrates how to configure the `extractTextOption` property to control the level of text extraction:
+
+
+
+{% tabs %}
+{% highlight cshtml tabtitle="Standalone" %}
+
+@page "{handler?}"
+@model IndexModel
+@{
+ ViewData["Title"] = "Home page";
+}
+
+
+
+
+
+
+
+
+{% endhighlight %}
+{% endtabs %}
+
+### Description of Each Option
+**extractTextOption.TextAndBounds (default):** This option returns both plain text and its positional data (bounds). Use this option when you need to access both the content of the PDF and its layout for further processing or analysis.
+
+**extractTextOption.TextOnly:** This option returns only the plain text from the PDF. No positional or layout data is included. Note that when using this option, text search functionality will be disabled. In such cases, it is recommended to use findTextAsync for text searching.
+
+**extractTextOption.BoundsOnly:** This option returns only the layout information (bounds) of the text, excluding the actual content. It is useful when the focus is on the position of text elements rather than the text itself.
+
+**extractTextOption.None:** This option does not extract or return any text or layout information. It is used to optimize memory usage when no text extraction is necessary. This setting is only relevant for the `extractTextCompleted` event and cannot be used with the `ExtractText` method.
+
+N> Text Search: When using the `extractTextOption.TextOnly` and `extractTextOption.None` option, the findText method will not work. Instead, you should use the findTextAsync method to perform text searches asynchronously.
+
+[View sample in GitHub](https://github.com/SyncfusionExamples/asp-core-pdf-viewer-examples/tree/master/How%20to)
\ No newline at end of file
diff --git a/ej2-asp-core-mvc/pdfviewer/EJ2_ASP.NETCORE/how-to/extract-text.md b/ej2-asp-core-mvc/pdfviewer/EJ2_ASP.NETCORE/how-to/extract-text.md
index 9da8c69cc6..aa12fefd13 100644
--- a/ej2-asp-core-mvc/pdfviewer/EJ2_ASP.NETCORE/how-to/extract-text.md
+++ b/ej2-asp-core-mvc/pdfviewer/EJ2_ASP.NETCORE/how-to/extract-text.md
@@ -8,7 +8,8 @@ publishingplatform: ##Platform_Name##
documentation: ug
---
-# Extract Text from PDF document
+# Extract Text from PDF document
+## Extract Text in server backed mode.
The PDF Viewer server library allows you to extract the text from a page along with the bounds. Text extracting can be done using the ExtractText() method. Add the following dependency to your application using the `NuGet Package Manager`.
* Syncfusion.EJ2.PdfViewer.AspNet.Core
@@ -34,3 +35,74 @@ Sample:
[http://www.syncfusion.com/downloads/support/directtrac/general/ze/ExtractText-1972118166](http://www.syncfusion.com/downloads/support/directtrac/general/ze/ExtractText-1972118166)
N>Ensure the provided document path and output text saved locations in your application level.
+
+## Extract Text Method in standalone mode
+
+The `extractText` method of the Syncfusion PdfViewer control enables text extraction from one or more pages in a PDF document. This method is useful for retrieving the text content along with its associated data, such as the bounds of each text element.
+
+### extractText Method
+The extractText method retrieves text data from the specified page(s) of a PDF document. It can extract text from one page, a range of pages, or even provide detailed text data, depending on the options specified.
+
+#### Parameters:
+**startIndex:** The starting page index for text extraction (0-based index).
+
+**endIndex Or isOptions:** This can either be the ending page index for the text extraction (for extracting from multiple pages) or an option specifying text extraction criteria for a single page.
+
+**options (optional):** Specifies additional options, such as extracting plain text `TextOnly` or more detailed text data `TextAndBounds`. You can specify various options for text extraction. These options determine whether you want to extract plain text, text with bounds, or detailed text data.
+
+***TextOnly:*** Extracts only the plain text content without bounds or additional information.
+
+***TextAndBounds:*** Extracts text content along with its bounds (coordinates) within the PDF.
+
+#### Returns:
+The method returns a Promise that resolves to an object containing two properties:
+
+**textData:** An array of TextDataSettingsModel objects, each representing the details of the extracted text (including bounds, page text, etc.).
+
+**pageText:** A concatenated string of plain text extracted from the specified page(s).
+
+### Usage of extractText in Syncfusion PdfViewer Control
+Here is an example that demonstrates how to use the extractText method:
+
+{% tabs %}
+{% highlight cshtml tabtitle="Standalone" %}
+
+@page "{handler?}"
+@model IndexModel
+@{
+ ViewData["Title"] = "Home page";
+}
+
+
+
+
+
+
+
+
+
+
+{% endhighlight %}
+{% endtabs %}
+
+#### Explanation:
+**Single Page Extraction:** The first `extractText` call extracts text from page 1 (`startIndex = 1`), using the 'TextOnly' option for plain text extraction.
+
+**Multiple Pages Extraction:** The second extractText call extracts text from pages 0 through 2 (`startIndex = 0, endIndex = 2`), using the `TextOnly` option for plain text extraction.
+
+[View sample in GitHub](https://github.com/SyncfusionExamples/asp-core-pdf-viewer-examples/tree/master/How%20to)
\ No newline at end of file
diff --git a/ej2-asp-core-mvc/pdfviewer/EJ2_ASP.NETCORE/how-to/find-text-async.md b/ej2-asp-core-mvc/pdfviewer/EJ2_ASP.NETCORE/how-to/find-text-async.md
new file mode 100644
index 0000000000..f018ba2962
--- /dev/null
+++ b/ej2-asp-core-mvc/pdfviewer/EJ2_ASP.NETCORE/how-to/find-text-async.md
@@ -0,0 +1,92 @@
+---
+layout: post
+title: Find Text Async in EJ2 ASP.NET Core PDF Viewer | Syncfusion
+description: Learn about the `findTextAsync` in Syncfusion ##Platform_Name## Pdfviewer component of Syncfusion Essential JS 2 and more.
+platform: ej2-asp-core-mvc
+control: PDF Viewer
+publishingplatform: ##Platform_Name##
+documentation: ug
+---
+
+# Find Text using findTextAsync Method in Syncfusion PdfViewer
+
+The findTextAsync method in the Syncfusion PdfViewer control allows you to search for specific text or an array of strings asynchronously within a PDF document. The method returns the bounding rectangles for each occurrence of the search term, allowing you to find and work with text positions in the document.
+
+Here is an example of how you can use the **findTextAsync** method:
+
+
+{% tabs %}
+{% highlight cshtml tabtitle="Standalone" %}
+
+@page "{handler?}"
+@model IndexModel
+@{
+ ViewData["Title"] = "Home page";
+}
+
+
+
+
+
+
+
+
+
+
+{% endhighlight %}
+{% endtabs %}
+
+
+### Description:
+
+The `findTextAsync` method is designed for performing an asynchronous text search within a PDF document. You can use it to search for a single string or multiple strings, with the ability to control case sensitivity. By default, the search is applied to all pages of the document. However, you can adjust this behavior by specifying the page number (pageIndex), which allows you to search only a specific page if needed.
+
+### Parameters:
+
+**text (string | string[]):**
+
+The text or an array of texts you want to search for in the document.
+
+**matchCase (boolean):**
+
+Indicates whether the search should be case-sensitive.
+When set to true, the search will match the exact case.
+When set to false, the search will ignore case differences.
+
+**pageIndex (optional, number):**
+
+Specifies the page number (zero-based index) to search within the document.
+If not provided, the search will be performed across all pages in the document.
+For example, passing 0 would search only the first page of the document.
+
+### Example Workflow:
+
+**findTextAsync('pdf', false):**
+This will search for the term "pdf" in a case-insensitive manner across all pages of the document.
+
+**findTextAsync(['pdf', 'the'], false):**
+This will search for the terms "pdf" and "the" in a case-insensitive manner across all pages of the document.
+
+**findTextAsync('pdf', false, 0):**
+This will search for the term "pdf" in a case-insensitive manner only on the first page (page 0).
+
+**findTextAsync(['pdf', 'the'], false, 1):**
+This will search for the terms "pdf" and "the" in a case-insensitive manner only on the second page (page 1).
+
+[View sample in GitHub](https://github.com/SyncfusionExamples/asp-core-pdf-viewer-examples/tree/master/How%20to)
\ No newline at end of file
diff --git a/ej2-asp-core-toc.html b/ej2-asp-core-toc.html
index a2800a968a..79aa951289 100644
--- a/ej2-asp-core-toc.html
+++ b/ej2-asp-core-toc.html
@@ -1985,6 +1985,9 @@