Skip to content

Docs feedback #524

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 2 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions libraries/radpdfprocessing/model/form.md
Original file line number Diff line number Diff line change
Expand Up @@ -104,6 +104,8 @@ You can modify a __Form__ element using the properties the class exposes. The pr
editor.DrawPath(pathGeometry);
{{endregion}}

![PdfProcessing Modify Form Properties](images/pdf-processing-modify-form-properties.png)

## See Also

* [Form Source]({%slug radpdfprocessing-model-formsource%})
Expand Down
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
2 changes: 1 addition & 1 deletion libraries/radziplibrary/gettingstarted.md
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ The code snippet from __Example 1__ demonstrates how to open existing Zip archiv

using (Stream stream = File.Open("test.zip", FileMode.Open))
{
using (ZipArchive = ZipArchive.Create(stream))
using (ZipArchive archive = ZipArchive.Create(stream))
{
// Display the list of the files in the selected zip file using the ZipArchive.Entries property.
}
Expand Down