Skip to content

Commit 0089518

Browse files
Merge branch 'development' into EJ2-894022-dev
2 parents 3b5c5f2 + 971b251 commit 0089518

File tree

6 files changed

+16
-40
lines changed

6 files changed

+16
-40
lines changed

ej2-asp-core-mvc/pdfviewer/EJ2_ASP.MVC/getting-started.md

Lines changed: 2 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ title: Getting Started with EJ2 ASP.NET MVC PDF Viewer Control | Syncfusion
44
description: Learn how to getting started with PDF Viewer control in ASP.NET MVC application. You can view and comment on PDFs in ease and also can fill form fields.
55
platform: ej2-asp-core-mvc
66
control: PDF Viewer
7-
publishingplatform: ej2-asp-core-mvc
7+
publishingplatform: ##Platform_Name##
88
documentation: ug
99
---
1010

@@ -128,16 +128,4 @@ Press <kbd>Ctrl</kbd>+<kbd>F5</kbd> (Windows) or <kbd>⌘</kbd>+<kbd>F5</kbd> (m
128128

129129
N> [View Sample in GitHub](https://github.com/SyncfusionExamples/ASP-NET-MVC-Getting-Started-Examples/tree/main/PDFViewer/ASP.NET%20MVC%20Razor%20Examples).
130130

131-
N> You can refer to our [ASP.NET MVC PDF Viewer](https://www.syncfusion.com/aspnet-mvc-ui-controls/pdf-viewer) feature tour page for its groundbreaking feature representations. You can also explore our [ASP.NET MVC PDF Viewer example](https://ej2.syncfusion.com/aspnetmvc/PdfViewer/Default#/material) to understand the core features of PDF Viewer.
132-
133-
## Limitation over Server-Backed PDF Viewer to Standalone PDF Viewer control
134-
135-
When comparing a Standalone PDF Viewer to a Server-Backed PDF Viewer control, it's crucial to understand the limitations that the Standalone PDF Viewer may have in comparison. These limitations are important to consider
136-
137-
### Local File Access
138-
139-
* The Standalone PDF Viewer control does not have the capability to directly access and load local physical files from a user's device. As a result, it is not possible to use a documentPath to load a PDF file directly from a local server within the viewer.
140-
141-
* The Standalone PDF Viewer allows users to export annotations and form fields from the viewer, it's important to be aware that the viewer does not support the direct import of annotations and form fields from a locally specified file path. In other words, you can extract annotations and form fields from the viewer, but you cannot reintroduce them into the viewer from external sources by specifying a file path located on your local device.
142-
143-
N> These limitations are temporary and are expected to be addressed in the near future.
131+
N> You can refer to our [ASP.NET MVC PDF Viewer](https://www.syncfusion.com/aspnet-mvc-ui-controls/pdf-viewer) feature tour page for its groundbreaking feature representations. You can also explore our [ASP.NET MVC PDF Viewer example](https://ej2.syncfusion.com/aspnetmvc/PdfViewer/Default#/material) to understand the core features of PDF Viewer.

ej2-asp-core-mvc/pdfviewer/EJ2_ASP.MVC/toolbar.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -27,9 +27,9 @@ The following table shows built-in toolbar items and its actions:-
2727
| UndoRedoTool | This tool provides options to undo and redo the annotation actions performed in the PDF Viewer.|
2828
| AnnotationEditTool | This tool provides options to enable or disable the edit mode of annotation in the PDF Viewer.|
2929

30-
### Show/Hide the default toolbar
30+
## Show/Hide the built-in toolbar
3131

32-
The PDF Viewer has an option to show or hide the complete default toolbar. You can achieve this by using the following two ways.,
32+
The PDF Viewer has an option to show or hide the complete built-in toolbar. You can achieve this by using the following two ways.,
3333

3434
* **Show/Hide toolbar using enableToolbar API as in the following code snippet.**
3535

@@ -62,9 +62,9 @@ The PDF Viewer has an option to show or hide the complete default toolbar. You c
6262
</script>
6363
```
6464

65-
### Show/Hide the default toolbaritem
65+
## Show/Hide the built-in toolbaritem
6666

67-
The PDF Viewer has an option to show or hide these grouped items in the default toolbar.
67+
The PDF Viewer has an option to show or hide these grouped items in the built-in toolbar.
6868

6969
* **Show/Hide toolbaritem using toolbarSettings as in the following code snippet.**
7070

@@ -276,7 +276,7 @@ N> When customizing toolbar items, you have the flexibility to include either ic
276276

277277
## Custom Toolbar
278278

279-
The PDF Viewer provides API for user interactions options provided in it's built-in toolbar. Using this we can create our own User Interface for toolbar actions in application level by hiding the default toolbar. The following steps are used to create the custom toolbar for PDF Viewer,
279+
The PDF Viewer provides API for user interactions options provided in it's built-in toolbar. Using this we can create our own User Interface for toolbar actions in application level by hiding the built-in toolbar. The following steps are used to create the custom toolbar for PDF Viewer,
280280

281281
**Step 1:** Follow the steps provided in the [link](https://ej2.syncfusion.com/aspnetmvc/documentation/pdfviewer/getting-started/) to create simple PDF Viewer sample.
282282

@@ -297,7 +297,7 @@ new ToolbarItem { Type = ItemType.Button, PrefixIcon = "e-pv-download-document-
297297
<input type ="file" id="fileUpload" accept=".pdf" style="display:block;visibility:hidden;width:0;height:0;">
298298
```
299299

300-
**Step 3:** Hide the default toolbar of PDF Viewer using below code snippet,
300+
**Step 3:** Hide the built-in toolbar of PDF Viewer using below code snippet,
301301

302302
{% tabs %}
303303
{% highlight html tabtitle="Standalone" %}

ej2-asp-core-mvc/pdfviewer/EJ2_ASP.NETCORE/getting-started.md

Lines changed: 1 addition & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ title: Getting Started with EJ2 ASP.NET Core PDF Viewer Control | Syncfusion
44
description: Learn how to getting started with PDF Viewer control in ASP.NET Core application. You can view and comment on PDFs in ease and also can fill forms.
55
platform: ej2-asp-core-mvc
66
control: PDF Viewer
7-
publishingplatform: ej2-asp-core-mvc
7+
publishingplatform: ##Platform_Name##
88
documentation: ug
99
---
1010

@@ -134,18 +134,6 @@ Press <kbd>Ctrl</kbd>+<kbd>F5</kbd> (Windows) or <kbd>⌘</kbd>+<kbd>F5</kbd> (m
134134

135135
N> [View Sample in GitHub](https://github.com/SyncfusionExamples/ASP-NET-Core-Getting-Started-Examples/tree/main/PDFViewer/ASP.NET%20Core%20Tag%20Helper%20Examples%20-%20Standalone%20PDF%20Viewer).
136136

137-
## Limitation over Server-Backed PDF Viewer to Standalone PDF Viewer control
138-
139-
When comparing a Standalone PDF Viewer to a Server-Backed PDF Viewer control, it's crucial to understand the limitations that the Standalone PDF Viewer may have in comparison. These limitations are important to consider
140-
141-
### Local File Access
142-
143-
* The Standalone PDF Viewer control does not have the capability to directly access and load local physical files from a user's device. As a result, it is not possible to use a documentPath to load a PDF file directly from a local server within the viewer.
144-
145-
* The Standalone PDF Viewer allows users to export annotations and form fields from the viewer, it's important to be aware that the viewer does not support the direct import of annotations and form fields from a locally specified file path. In other words, you can extract annotations and form fields from the viewer, but you cannot reintroduce them into the viewer from external sources by specifying a file path located on your local device.
146-
147-
N> These limitations are temporary and are expected to be addressed in the near future.
148-
149137
## See also
150138

151139
* [Getting Started with Syncfusion ASP.NET Core using Razor Pages](https://ej2.syncfusion.com/aspnetcore/documentation/getting-started/razor-pages/)

ej2-asp-core-mvc/pdfviewer/EJ2_ASP.NETCORE/toolbar.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -27,9 +27,9 @@ The following table shows built-in toolbar items and its actions:-
2727
| UndoRedoTool | This tool provides options to undo and redo the annotation actions performed in the PDF Viewer.|
2828
| AnnotationEditTool | This tool provides options to enable or disable the edit mode of annotation in the PDF Viewer.|
2929

30-
### Show/Hide the default toolbar
30+
## Show/Hide the built-in toolbar
3131

32-
The PDF Viewer has an option to show or hide the complete default toolbar. You can achieve this by using following two ways.,
32+
The PDF Viewer has an option to show or hide the complete built-in toolbar. You can achieve this by using following two ways.,
3333

3434
* **Show/Hide toolbar using enableToolbar API as in the following code snippet**
3535

@@ -101,9 +101,9 @@ The PDF Viewer has an option to show or hide the complete default toolbar. You c
101101
{% endhighlight %}
102102
{% endtabs %}
103103

104-
### Show/Hide the default toolbaritem
104+
## Show/Hide the built-in toolbaritem
105105

106-
The PDF Viewer has an option to show or hide these grouped items in the default toolbar.
106+
The PDF Viewer has an option to show or hide these grouped items in the built-in toolbar.
107107

108108
* **Show/Hide toolbaritem using toolbarSettings as in the following code snippet.**
109109

@@ -356,7 +356,7 @@ N> When customizing toolbar items, you have the flexibility to include either ic
356356

357357
## Custom Toolbar
358358

359-
The PDF Viewer provides API for user interactions options provided in its built-in toolbar. Using this, you can create your own User Interface for toolbar actions in application level by hiding the default toolbar. The following steps are used to create the custom toolbar for PDF Viewer:-
359+
The PDF Viewer provides API for user interactions options provided in its built-in toolbar. Using this, you can create your own User Interface for toolbar actions in application level by hiding the built-in toolbar. The following steps are used to create the custom toolbar for PDF Viewer:-
360360

361361
**Step 1:** Follow the steps provided in the [link](https://ej2.syncfusion.com/aspnetcore/documentation/pdfviewer/getting-started) to create simple PDF Viewer sample.
362362

0 commit comments

Comments
 (0)