Skip to content

Commit e51756c

Browse files
committed
address comments in kb articles
1 parent 8f9a582 commit e51756c

File tree

2 files changed

+10
-10
lines changed

2 files changed

+10
-10
lines changed

knowledge-base/save-pdf-files-mobile-desktop.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -17,15 +17,15 @@ res_type: kb
1717

1818
## Description
1919

20-
Learn how to save pdf files in your .NET MAUI application.
20+
Learn how to save PDF files in your .NET MAUI application.
2121

2222
This knowledge base article also answers the following questions:
23-
- How can I save `PDF` files?
24-
- How can I use the PDF Viewer Toolbar for Saving `PDF` documents?
23+
- How can I save PDF files?
24+
- How can I use the PDF Viewer Toolbar for Saving PDF documents?
2525

2626
## Solution
2727

28-
For saving files we will use the [.NET MAUI File System Helper API](https://learn.microsoft.com/en-us/dotnet/maui/platform-integration/storage/file-system-helpers?view=net-maui-9.0&tabs=android). The `Save` command will be executed from a custom toolbar `ButtonToolbarItem` inside the [PDF Viewer Toolbar]({%slug pdfviewer-toolbar%}).
28+
For saving files, use the [.NET MAUI File System Helper API](https://learn.microsoft.com/en-us/dotnet/maui/platform-integration/storage/file-system-helpers?view=net-maui-9.0&tabs=android). The `Save` command will be executed from a custom toolbar `ButtonToolbarItem` inside the [PDF Viewer Toolbar]({%slug pdfviewer-toolbar%}).
2929

3030
**1.** Define the [PDF VIewer]({%slug pdfviewer-overview%}) and [PDF Viewer Toolbar]({%slug pdfviewer-toolbar%}):
3131

@@ -44,7 +44,7 @@ For saving files we will use the [.NET MAUI File System Helper API](https://lear
4444
</Grid>
4545
```
4646

47-
**2.** for the demo the document is loaded as `Embedded Resource`.
47+
**2.** In this example, the document is loaded as `Embedded Resource`.
4848

4949
```C#
5050
Func<CancellationToken, Task<Stream>> streamFunc = ct => Task.Run(() =>

knowledge-base/share-pdf-files-mobile-desktop.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -16,15 +16,15 @@ res_type: kb
1616

1717
## Description
1818

19-
Learn how to share pdf files in your .NET MAUI application.
19+
Learn how to share PDF files in your .NET MAUI application.
2020

2121
This knowledge base article also answers the following questions:
22-
- How can I transfer `PDF` files in .NET MAUI application?
23-
- How can I use the PDF Viewer Toolbar for Sharing `PDF` documents?
22+
- How can I transfer PDF files in .NET MAUI application?
23+
- How can I use the PDF Viewer Toolbar for Sharing PDF documents?
2424

2525
## Solution
2626

27-
For sharing files we will use the [.NET MAUI Share File API](https://learn.microsoft.com/en-us/dotnet/maui/platform-integration/data/share?view=net-maui-9.0&tabs=android). The `Share` command will be executed from a custom toolbar `ButtonToolbarItem` inside the [PDF Viewer Toolbar]({%slug pdfviewer-toolbar%}).
27+
For sharing files, use the [.NET MAUI Share File API](https://learn.microsoft.com/en-us/dotnet/maui/platform-integration/data/share?view=net-maui-9.0&tabs=android). The `Share` command will be executed from a custom toolbar `ButtonToolbarItem` inside the [PDF Viewer Toolbar]({%slug pdfviewer-toolbar%}).
2828

2929
**1.** Define the [PDF VIewer]({%slug pdfviewer-overview%}) and [PDF Viewer Toolbar]({%slug pdfviewer-toolbar%}):
3030

@@ -45,7 +45,7 @@ For sharing files we will use the [.NET MAUI Share File API](https://learn.micro
4545
</Grid>
4646
```
4747

48-
**2.** for the demo the document is loaded as `Embedded Resource`.
48+
**2.** In this example, load the document as `Embedded Resource`.
4949

5050
```C#
5151
Func<CancellationToken, Task<Stream>> streamFunc = ct => Task.Run(() =>

0 commit comments

Comments
 (0)