Skip to content
Merged
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