Skip to content

Commit d8a7bdc

Browse files
committed
273660: master frontend error
1 parent 3bec6cd commit d8a7bdc

File tree

47 files changed

+54
-55
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

47 files changed

+54
-55
lines changed

Document-Processing/PDF/PDF-Viewer/angular/open-pdf-file/from-box-cloud-file-storage.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ documentation: ug
88
domainurl: ##DomainURL##
99
---
1010

11-
# Open PDF from Box cloud storage
11+
# Open PDF from Box cloud storage in Angular
1212

1313
Follow these steps to load a PDF from Box cloud storage using the server-backed PDF Viewer.
1414

Document-Processing/PDF/PDF-Viewer/angular/open-pdf-file/from-google-cloud-storage.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ documentation: ug
88
domainurl: ##DomainURL##
99
---
1010

11-
# Open PDF from Google Cloud Storage
11+
# Open PDF from Google Cloud Storage in Angular PDF Viewer
1212

1313
Follow these steps to load a PDF from Google Cloud Storage using the server-backed PDF Viewer.
1414

Document-Processing/PDF/PDF-Viewer/angular/open-pdf-file/from-google-drive.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ documentation: ug
88
domainurl: ##DomainURL##
99
---
1010

11-
# Open PDF from Google Drive
11+
# Open PDF from Google Drive in Angular
1212

1313
Follow these steps to load a PDF from Google Drive using the server-backed PDF Viewer.
1414

Document-Processing/PDF/PDF-Viewer/angular/save-pdf-file/to-amazon-s3.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ documentation: ug
88
domainurl: ##DomainURL##
99
---
1010

11-
# Save PDF files to AWS S3
11+
# Save PDF files to AWS S3 in Angular
1212

1313
The TypeScript PDF Viewer component supports saving PDF files to AWS S3 using either the standalone or server-backed configuration. The following steps demonstrate both approaches.
1414

Document-Processing/PDF/PDF-Viewer/angular/save-pdf-file/to-azure-active-directory.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ documentation: ug
88
domainurl: ##DomainURL##
99
---
1010

11-
# Save PDF files to Azure Active Directory (AAD)
11+
# Save PDF files to Azure Active Directory (AAD) in Angular
1212

1313
### Overview
1414

Document-Processing/PDF/PDF-Viewer/angular/save-pdf-file/to-azure-blob-storage.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ documentation: ug
88
domainurl: ##DomainURL##
99
---
1010

11-
# Save PDF files to Azure Blob Storage
11+
# Save PDF files to Azure Blob Storage in Angular
1212

1313
The TypeScript PDF Viewer component supports saving PDF files to Azure Blob Storage using either the standalone or server-backed configuration. The following steps demonstrate both approaches.
1414

Document-Processing/PDF/PDF-Viewer/asp-net-core/how-to/import-export-annotation.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ documentation: ug
99

1010
# Import and export annotations in ASP.NET Core PDF Viewer
1111

12-
Import annotations from objects or streams instead of files. To import such objects, first export annotations as objects using the [**exportAnnotationsAsObject()**](https://ej2.syncfusion.com/documentation/api/pdfviewer/#exportannotationsasobject) method. Only objects exported from the PDF Viewer can be imported.
12+
Import annotations from objects or streams instead of files. To import such objects, first export annotations as objects using the [**exportAnnotationsAsObject()**](https://ej2.syncfusion.com/documentation/api/pdfviewer#exportannotationsasobject) method. Only objects exported from the PDF Viewer can be imported.
1313

1414
Use the following steps to import and export annotations as objects, JSON, or XFDF.
1515

Document-Processing/PDF/PDF-Viewer/asp-net-core/open-pdf-file/from-box-cloud-file-storage.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
11
---
22
layout: post
3-
title: Open PDF from Box cloud storage in ASP.NET Core PDF Viewer | Syncfusion
3+
title: Open PDF from cloud storage in ASP.NET Core PDF Viewer | Syncfusion
44
description: Learn how to load PDFs from Box cloud storage in the Syncfusion ASP.NET Core PDF Viewer component using a server-backed approach.
55
platform: document-processing
66
control: PDF Viewer
77
documentation: ug
88
---
99

10-
# Open PDF from Box cloud storage
10+
# Open PDF from Box cloud storage in ASP.NET Core
1111

1212
Follow these steps to load a PDF from Box cloud storage using the server-backed PDF Viewer.
1313

@@ -121,7 +121,7 @@ N> replace **Your_Box_Storage_Access_Token** with your actual box access token,
121121

122122
**Step 4:** Configure the PDF Viewer component
123123

124-
Set the [serviceUrl](https://ej2.syncfusion.com/documentation/api/pdfviewer/#serviceurl) to your web service endpoint (replace the localhost URL with your server URL). Set `documentPath` to the PDF file name to load from Box cloud storage. Ensure the document name exists in your Box folder.
124+
Set the [serviceUrl](https://ej2.syncfusion.com/documentation/api/pdfviewer#serviceurl) to your web service endpoint (replace the localhost URL with your server URL). Set `documentPath` to the PDF file name to load from Box cloud storage. Ensure the document name exists in your Box folder.
125125

126126
```csharp
127127

Document-Processing/PDF/PDF-Viewer/asp-net-core/open-pdf-file/from-google-cloud-storage.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ control: PDF Viewer
77
documentation: ug
88
---
99

10-
# Open PDF from Google Cloud Storage
10+
# Open PDF from Google Cloud Storage in ASP.NET Core
1111

1212
Follow these steps to load a PDF from Google Cloud Storage using the server-backed PDF Viewer.
1313

Document-Processing/PDF/PDF-Viewer/asp-net-core/open-pdf-file/from-google-drive.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
11
---
22
layout: post
3-
title: Open PDF from Google Drive in ASP.NET Core PDF Viewer | Syncfusion
3+
title: Open Google Cloud PDF in Syncfusion ASP.NET Core Viewer
44
description: Learn how to load PDFs from Google Drive in the Syncfusion ASP.NET Core PDF Viewer component using a server-backed approach.
55
platform: document-processing
66
control: PDF Viewer
77
documentation: ug
88
---
99

10-
# Open PDF from Google Drive
10+
# Open PDF from Google Drive in ASP.NET Core
1111

1212
Follow these steps to load a PDF from Google Drive using the server-backed PDF Viewer.
1313

@@ -146,7 +146,7 @@ N> The **FolderId** part is the unique identifier for the folder. For example, i
146146

147147
**Step 4:** Configure the PDF Viewer component
148148

149-
Set the [serviceUrl](https://ej2.syncfusion.com/documentation/api/pdfviewer/#serviceurl) to your web service endpoint (replace the localhost URL with your server URL). Set `documentPath` to the PDF file name to load from Google Drive. Ensure the document name exists in your Drive folder.
149+
Set the [serviceUrl](https://ej2.syncfusion.com/documentation/api/pdfviewer#serviceurl) to your web service endpoint (replace the localhost URL with your server URL). Set `documentPath` to the PDF file name to load from Google Drive. Ensure the document name exists in your Drive folder.
150150

151151
```csharp
152152

0 commit comments

Comments
 (0)