diff --git a/libraries/radpdfprocessing/model/form.md b/libraries/radpdfprocessing/model/form.md index 285082ea..373e518a 100644 --- a/libraries/radpdfprocessing/model/form.md +++ b/libraries/radpdfprocessing/model/form.md @@ -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%}) diff --git a/libraries/radpdfprocessing/model/images/pdf-processing-modify-form-properties.png b/libraries/radpdfprocessing/model/images/pdf-processing-modify-form-properties.png new file mode 100644 index 00000000..7ddfd018 Binary files /dev/null and b/libraries/radpdfprocessing/model/images/pdf-processing-modify-form-properties.png differ diff --git a/libraries/radziplibrary/gettingstarted.md b/libraries/radziplibrary/gettingstarted.md index 5e196f49..03823ecf 100644 --- a/libraries/radziplibrary/gettingstarted.md +++ b/libraries/radziplibrary/gettingstarted.md @@ -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. }