Skip to content

Commit 6fa174e

Browse files
authored
Merge pull request #326 from aspose-pdf/PDFNET_58672_Update_TOC
Update ToC (PDFNET-58672)
2 parents 431810f + d21718c commit 6fa174e

File tree

5 files changed

+27
-52
lines changed

5 files changed

+27
-52
lines changed

net/advanced-operations/working-with-graphs/arc/_index.md

Lines changed: 5 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -84,15 +84,11 @@ Aspose.PDF for .NET supports the feature to add graph objects (for example graph
8484

8585
Follow the steps below:
8686

87-
1. Create [Document](https://reference.aspose.com/pdf/net/aspose.pdf/document) instance
88-
89-
1. Create [Drawing object](https://reference.aspose.com/pdf/net/aspose.pdf.drawing) with certain dimensions
90-
91-
1. Set [Border](https://reference.aspose.com/pdf/net/aspose.pdf.drawing/graph/properties/border) for Drawing object
92-
93-
1. Add [Graph](https://reference.aspose.com/pdf/net/aspose.pdf.drawing/graph) object to paragraphs collection of page
94-
95-
1. Save our PDF file
87+
1. Create [Document](https://reference.aspose.com/pdf/net/aspose.pdf/document) instance.
88+
1. Create [Drawing object](https://reference.aspose.com/pdf/net/aspose.pdf.drawing) with certain dimensions.
89+
1. Set [Border](https://reference.aspose.com/pdf/net/aspose.pdf.drawing/graph/properties/border) for Drawing object.
90+
1. Add [Graph](https://reference.aspose.com/pdf/net/aspose.pdf.drawing/graph) object to paragraphs collection of page.
91+
1. Save our PDF file.
9692

9793
The following code snippet shows how to add a [Arc](https://reference.aspose.com/pdf/net/aspose.pdf.drawing/arc) object.
9894

net/advanced-operations/working-with-graphs/circle/_index.md

Lines changed: 5 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -84,15 +84,11 @@ Like bar graphs, circle graphs can be used to display data in a number of separa
8484

8585
Follow the steps below:
8686

87-
1. Create [Document](https://reference.aspose.com/pdf/net/aspose.pdf/document) instance
88-
89-
1. Create [Drawing object](https://reference.aspose.com/pdf/net/aspose.pdf.drawing) with certain dimensions
90-
91-
1. Set [Border](https://reference.aspose.com/pdf/net/aspose.pdf.drawing/graph/properties/border) for Drawing object
92-
93-
1. Add [Graph](https://reference.aspose.com/pdf/net/aspose.pdf.drawing/graph) object to paragraphs collection of page
94-
95-
1. Save our PDF file
87+
1. Create [Document](https://reference.aspose.com/pdf/net/aspose.pdf/document) instance.
88+
1. Create [Drawing object](https://reference.aspose.com/pdf/net/aspose.pdf.drawing) with certain dimensions.
89+
1. Set [Border](https://reference.aspose.com/pdf/net/aspose.pdf.drawing/graph/properties/border) for Drawing object.
90+
1. Add [Graph](https://reference.aspose.com/pdf/net/aspose.pdf.drawing/graph) object to paragraphs collection of page.
91+
1. Save our PDF file.
9692

9793
```csharp
9894
public static void Circle()

net/advanced-operations/working-with-graphs/curve/_index.md

Lines changed: 5 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -90,15 +90,11 @@ In this article, we will investigate simply graph curves, and filled curves, th
9090

9191
Follow the steps below:
9292

93-
1. Create [Document](https://reference.aspose.com/pdf/net/aspose.pdf/document) instance
94-
95-
1. Create [Drawing object](https://reference.aspose.com/pdf/net/aspose.pdf.drawing) with certain dimensions
96-
97-
1. Set [Border](https://reference.aspose.com/pdf/net/aspose.pdf.drawing/graph/properties/border) for Drawing object
98-
99-
1. Add [Graph](https://reference.aspose.com/pdf/net/aspose.pdf.drawing/graph) object to paragraphs collection of page
100-
101-
1. Save our PDF file
93+
1. Create [Document](https://reference.aspose.com/pdf/net/aspose.pdf/document) instance.
94+
1. Create [Drawing object](https://reference.aspose.com/pdf/net/aspose.pdf.drawing) with certain dimensions.
95+
1. Set [Border](https://reference.aspose.com/pdf/net/aspose.pdf.drawing/graph/properties/border) for Drawing object.
96+
1. Add [Graph](https://reference.aspose.com/pdf/net/aspose.pdf.drawing/graph) object to paragraphs collection of page.
97+
1. Save our PDF file.
10298

10399
```csharp
104100
public static void ExampleCurve()

net/advanced-operations/working-with-graphs/line/_index.md

Lines changed: 2 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -84,18 +84,12 @@ Aspose.PDF for .NET supports the feature to add graph objects (for example graph
8484

8585
Follow the steps below:
8686

87-
1. Create a new PDF [Document](https://reference.aspose.com/pdf/net/aspose.pdf/document)
88-
89-
1. Add [Page](https://reference.aspose.com/pdf/net/aspose.pdf/page) to pages collection of PDF file
90-
87+
1. Create a new PDF [Document](https://reference.aspose.com/pdf/net/aspose.pdf/document).
88+
1. Add [Page](https://reference.aspose.com/pdf/net/aspose.pdf/page) to pages collection of PDF file.
9189
1. Create [Graph](https://reference.aspose.com/pdf/net/aspose.pdf.drawing/graph) instance.
92-
9390
1. Add Graph object to paragraphs collection of page instance.
94-
9591
1. Create [Rectangle](https://reference.aspose.com/pdf/net/aspose.pdf.drawing/rectangle) instance.
96-
9792
1. Set line width.
98-
9993
1. Add [Rectangle](https://reference.aspose.com/pdf/net/aspose.pdf.drawing/rectangle) object to shapes collection of Graph object.
10094

10195
1. Save your PDF file.

net/advanced-operations/working-with-graphs/rectangle/_index.md

Lines changed: 10 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -86,23 +86,16 @@ First, let's look at the possibility of creating a Rectangle object.
8686

8787
Follow the steps below:
8888

89-
1. Create a new PDF [Document](https://reference.aspose.com/pdf/net/aspose.pdf/document)
90-
91-
1. Add [Page](https://reference.aspose.com/pdf/net/aspose.pdf/page) to pages collection of PDF file
92-
93-
1. Add [Text fragment](https://reference.aspose.com/pdf/net/aspose.pdf/texfragment) to paragraphs collection of page instance
94-
95-
1. Create [Graph](https://reference.aspose.com/pdf/net/aspose.pdf.drawing/graph) instance
96-
97-
1. Set border for [Drawing object](https://reference.aspose.com/pdf/net/aspose.pdf.drawing)
98-
99-
1. Create Rectangle instance
100-
101-
1. Add [Rectangle](https://reference.aspose.com/pdf/net/aspose.pdf.drawing/rectangle) object to shapes collection of Graph object
102-
103-
1. Add graph object to paragraphs collection of page instance
104-
105-
1. Add [Text fragment](https://reference.aspose.com/pdf/net/aspose.pdf/texfragment) to paragraphs collection of page instance
89+
1. Create a new PDF [Document](https://reference.aspose.com/pdf/net/aspose.pdf/document).
90+
1. Add [Page](https://reference.aspose.com/pdf/net/aspose.pdf/page) to pages collection of PDF file.
91+
1. Add [Text fragment](https://reference.aspose.com/pdf/net/aspose.pdf/texfragment) to paragraphs collection of page instance.
92+
1. Create [Graph](https://reference.aspose.com/pdf/net/aspose.pdf.drawing/graph) instance.
93+
1. Set border for [Drawing object](https://reference.aspose.com/pdf/net/aspose.pdf.drawing).
94+
1. Create Rectangle instance.
95+
96+
1. Add [Rectangle](https://reference.aspose.com/pdf/net/aspose.pdf.drawing/rectangle) object to shapes collection of Graph object.
97+
1. Add graph object to paragraphs collection of page instance.
98+
1. Add [Text fragment](https://reference.aspose.com/pdf/net/aspose.pdf/texfragment) to paragraphs collection of page instance.
10699

107100
1. And save your PDF file
108101

0 commit comments

Comments
 (0)