Skip to content

Commit 445e0ea

Browse files
authored
Merge pull request #343 from aspose-pdf/PDFNET_58672_Update_TOC
Update ToC
2 parents 5e0fb69 + 48edeb4 commit 445e0ea

File tree

7 files changed

+5
-14
lines changed

7 files changed

+5
-14
lines changed

net/advanced-operations/ai-copilot/_index.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -168,8 +168,8 @@ await chatCopilot.SaveResponseAsync("message1", "outputPath");
168168
await chatCopilot
169169
.SaveResponseAsync(new List<string>
170170
{
171-
"message1",
172-
"message2"
171+
"message1",
172+
"message2"
173173
},
174174
"outputPath");
175175
```

net/advanced-operations/annotations/add-delete-and-get-annotation/figures-annotations/_index.md

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -192,8 +192,6 @@ document.Save(dataDir + "appartments_mod.pdf");
192192

193193
As an example, we will see the following result of adding Square and Circle annotations to a PDF document:
194194

195-
![Circle and Square Annotation demo](circle_demo.png)
196-
197195
## Adding Polygon and Polyline Annotations
198196

199197
The Poly- tool allows you to create shapes and outlines with an arbitrary number of sides on the document.

net/advanced-operations/annotations/add-delete-and-get-annotation/multimedia-annotations/_index.md

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -425,10 +425,6 @@ public static void Add3dAnnotation()
425425
}
426426
```
427427

428-
This code example showed us such a model:
429-
430-
![3D Annotation demo](3d_demo.png)
431-
432428
<script type="application/ld+json">
433429
{
434430
"@context": "http://schema.org",

net/advanced-operations/working-with-documents/generate-crash-reports/_index.md

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -101,7 +101,7 @@ try
101101
}
102102
catch (Exception ex)
103103
{
104-
PdfException.GenerateCrashReport(new CrashReportOptions(ex));
104+
PdfException.GenerateCrashReport(new CrashReportOptions(ex));
105105
}
106106
```
107107

@@ -117,7 +117,6 @@ catch (Exception ex)
117117
CrashReportOptions options = new CrashReportOptions(ex);
118118
//by default it's working directory of application
119119
options.CrashReportDirectory = "C:\Temp";
120-
121120
PdfException.GenerateCrashReport(new CrashReportOptions(ex));
122121
}
123122
```
@@ -136,7 +135,6 @@ catch (Exception ex)
136135
//by default crash report name will be generated like following:
137136
//string.Format(@"CrashReport_{0}_{1}.html", DateTime.Today.ToShortDateString(), DateTime.Now.Ticks)
138137
options.CrashReportFilename = "custom_crash_report_name.html";
139-
140138
PdfException.GenerateCrashReport(options);
141139
}
142140
```

net/advanced-operations/working-with-forms/acroforms/_index.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -105,6 +105,7 @@ For more detailed learning of the capabilities of the Java library, see the foll
105105
- [Posting AcroForm Data](/pdf/net/posting-acroform-data/) - import and export form data to and XML file.
106106
- [Import and Export Data](/pdf/net/import-and-export-data/) - import and export data using Form Class.
107107
- [Remove Forms from PDF](/pdf/net/remove-form/) - remove Text based on subtype/form, delete all forms.
108+
- [Import and Export Data in JSON](/pdf/net/export-import-json/) - import and export data with JSON
108109

109110
<script type="application/ld+json">
110111
{

net/advanced-operations/working-with-forms/acroforms/export-import-json/_index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
---
22
title: Import and Export Data in JSON
33
type: docs
4-
weight: 70
4+
weight: 80
55
url: /net/import-export-json/
66
description: This section explains how to import and Export Data in JSON
77
lastmod: "2024-06-05"

net/advanced-operations/working-with-pages/crop-pages/_index.md

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -114,10 +114,8 @@ public static void CropPagesPDF()
114114
```
115115

116116
In this example we used a sample file [here](crop_page.pdf). Initially our page looks like shown on the Figure 1.
117-
![Figure 1. Cropped Page](crop_page.png)
118117

119118
After the change, the page will look like Figure 2.
120-
![Figure 2. Cropped Page](crop_page2.png)
121119

122120
<script type="application/ld+json">
123121
{

0 commit comments

Comments
 (0)