We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent cd37e08 commit f79e7bfCopy full SHA for f79e7bf
Styles/StylingToolbarItem/README.md
@@ -158,8 +158,9 @@ This namespace enables access to the PDF Viewer control.
158
**C#:**
159
160
```csharp
161
- Stream? stream = typeof(App).GetTypeInfo().Assembly.GetManifestResourceStream("ReplaceToolbarItem.Assets.PDF_Succinctly.pdf");
162
-
+ //Accessing the PDF document that is added as embedded resource as stream.
+ Stream? documentStream = typeof(App).GetTypeInfo().Assembly.GetManifestResourceStream("StylingToolbarItem.Assets.PDF_Succinctly.pdf");
163
+
164
// Assigning stream to "DocumentSource" property.
165
pdfViewer.DocumentSource = DocumentStream;
166
```
0 commit comments