
PDF is a platform-independent document format that keeps the formatting and layout of its content consistent across different operating systems or machines. This is the reason various organizations use PDF format for generating invoices, receipts, reports, and other business documents dynamically. Aspose.PDF for .NET is a PDF library that helps you implement PDF automation in .NET applications. It allows you to create, edit, parse and convert PDF files programmatically using C# or VB.NET. In this article, I’ll cover PDF generation features and show you how to create PDF files from scratch using C#.
I’ll start by creating a simple PDF document and then proceed to add other elements to the document. The following is the list of features I am going to demonstrate in this article.
- Create a PDF document using C#
- Apply text formatting in PDF using C#
- Create a multi-column PDF using C#
- Insert an image in a PDF using C#
- Create a table in a PDF using C#
- Add Hyperlinks to a PDF using C#
- Add bookmarks to a PDF using C#
C# PDF Library - Installation
You can install Aspose.PDF for .NET using NuGet Package Manager or Package Manager Console using the following command. Alternatively, it can be downloaded from the Downloads section.
Install-Package Aspose.Pdf
Create a PDF File using C#
Lets first create a PDF document containing a text fragment. The following are the steps to create a simple PDF document from scratch.
- Create an instance of Document class.
- Add a new Page to the Pages collection of the document.
- Add a new TextFragment to the paragraphs of the PDF.
- Create the PDF file using Document.Save() method.
The following code sample shows how to create a PDF file using C#.
// Load PDF document | |
Document document = new Document(); | |
// Add page | |
Aspose.Pdf.Page page = document.Pages.Add(); | |
// Add text to new page | |
page.Paragraphs.Add(new Aspose.Pdf.Text.TextFragment("Hello World! This is a new PDF generated by Aspose.PDF for .NET.")); | |
// Save the PDF document | |
document.Save("Generated-PDF.pdf"); |

Apply Text Formatting in PDF using C#
Let’s now check out how to add text to a PDF document and use different formatting options. The following are the steps to perform this operation.
- Use Document class to create a new PDF document or load an existing one.
- Access the Page you want to place the text on.
- Create an object of TextFragment and set the text and other formatting options such as position, font, color, size, etc.
- Use the TextBuilder class to add the TextFragment object to the page.
- Use the Document.Save() method to create the PDF document.
The following code sample shows how to add formatted text in a PDF file using C#.
// Load PDF document | |
Document document = new Document(); | |
// Add page | |
Aspose.Pdf.Page page = document.Pages.Add(); | |
// Create text fragment | |
TextFragment textFragment = new TextFragment("Text 1: We have now applied text formatting. This is PDF generated by Aspose.PDF for .NET"); | |
textFragment.Position = new Position(100, 700); | |
TextFragment textFragment1 = new TextFragment("Text 2: We have now applied text formatting. This is PDF generated by Aspose.PDF for .NET"); | |
textFragment1.Position = new Position(100, 600); | |
// Set text properties | |
textFragment.TextState.FontSize = 12; | |
textFragment.TextState.Font = FontRepository.FindFont("TimesNewRoman"); | |
textFragment.TextState.BackgroundColor = Aspose.Pdf.Color.FromRgb(System.Drawing.Color.LightGray); | |
textFragment.TextState.ForegroundColor = Aspose.Pdf.Color.FromRgb(System.Drawing.Color.Red); | |
textFragment1.TextState.DrawTextRectangleBorder = true; | |
textFragment1.TextState.Underline = true; | |
textFragment1.TextState.StrikeOut = true; | |
// Create new color with pattern colorspace | |
textFragment1.TextState.ForegroundColor = new Aspose.Pdf.Color() | |
{ | |
PatternColorSpace = new Aspose.Pdf.Drawing.GradientAxialShading(Color.Red, Color.Blue) | |
}; | |
// Create TextBuilder object | |
TextBuilder textBuilder = new TextBuilder(page); | |
// Append the text fragments to the PDF page | |
textBuilder.AppendText(textFragment); | |
textBuilder.AppendText(textFragment1); | |
// Save the PDF document | |
document.Save("Generated-PDF.pdf"); |

Create a Multi-Column PDF using C#
We often see that the text in newspapers, research articles, and other types of document is divided into two or more columns. In order to achieve this text division, Aspose.PDF for .NET allows creating a multi-column PDF. The following are the steps to create a multi-column PDF.
- Create a new PDF document using Document class.
- Add a new Page to the document using Document.Pages.Add() method.
- Set page margins using the Document.PageInfo.Margin properties.
- Create a new FloatingBox object and set ColumnCount, ColumnSpacing, and ColumnWidths properties.
- Create a new TextFragment and set its text.
- Add TextFragment to the FloatingBox using FloatingBox.Paragraphs.Add().
- Add FloatingBox to the page using Page.Paragraphs.Add().
- Save the PDF using the Document.Save() method.
The following code sample shows how to create a multi-column PDF using C#.
// Load PDF document | |
Document document = new Document(); | |
// Specify the left margin info for the PDF file | |
document.PageInfo.Margin.Left = 40; | |
// Specify the Right margin info for the PDF file | |
document.PageInfo.Margin.Right = 40; | |
Aspose.Pdf.Page page = document.Pages.Add(); | |
// Add a line | |
Aspose.Pdf.Drawing.Graph graph1 = new Aspose.Pdf.Drawing.Graph(500, 2); | |
// Add the line to paraphraphs collection of section object | |
page.Paragraphs.Add(graph1); | |
// Specify the coordinates for the line | |
float[] posArr = new float[] { 1, 2, 500, 2 }; | |
Aspose.Pdf.Drawing.Line l1 = new Aspose.Pdf.Drawing.Line(posArr); | |
graph1.Shapes.Add(l1); | |
// Add a heading | |
// Create string variables with text containing html tags | |
string s = "<font face=\"Times New Roman\" size=4>" + | |
"<strong> How to Steer Clear of money scams</<strong> " | |
+ "</font>"; | |
// Create text paragraphs containing HTML text | |
HtmlFragment heading_text = new HtmlFragment(s); | |
page.Paragraphs.Add(heading_text); | |
Aspose.Pdf.FloatingBox box = new Aspose.Pdf.FloatingBox(); | |
// Add four columns in the section | |
box.ColumnInfo.ColumnCount = 2; | |
// Set the spacing between the columns | |
box.ColumnInfo.ColumnSpacing = "5"; | |
// Set the column widths | |
box.ColumnInfo.ColumnWidths = "250 250"; | |
// Create text | |
TextFragment text2 = new TextFragment(@"Sed augue tortor, sodales id, luctus et, pulvinar ut, eros. Suspendisse vel dolor. Sed quam. Curabitur ut massa vitae eros euismod aliquam. Pellentesque sit amet elit. Vestibulum interdum pellentesque augue. Cras mollis arcu sit amet purus. Donec augue. Nam mollis tortor a elit. Nulla viverra nisl vel mauris. Vivamus sapien. nascetur ridiculus mus. Nam justo lorem, aliquam luctus, sodales et, semper sed, enim Nam justo lorem, aliquam luctus, sodales et,nAenean posuere ante ut neque. Morbi sollicitudin congue felis. Praesent turpis diam, iaculis sed, pharetra non, mollis ac, mauris. Phasellus nisi ipsum, pretium vitae, tempor sed, molestie eu, dui. Duis lacus purus, tristique ut, iaculis cursus, tincidunt vitae, risus. Sed commodo. *** sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nam justo lorem, aliquam luctus, sodales et, semper sed, enim Nam justo lorem, aliquam luctus, sodales et, semper sed, enim Nam justo lorem, aliquam luctus, sodales et, semper sed, enim nAenean posuere ante ut neque. Morbi sollicitudin congue felis. Praesent turpis diam, iaculis sed, pharetra non, mollis ac, mauris. Phasellus nisi ipsum, pretium vitae, tempor sed, molestie eu, dui. Duis lacus purus, tristique ut, iaculis cursus, tincidunt vitae, risus. Sed commodo. *** sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Sed urna. . Duis convallis ultrices nisi. Maecenas non ligula. Nunc nibh est, tincidunt in, placerat sit amet, vestibulum a, nulla. Praesent porttitor turpis eleifend ante. Morbi sodales.nAenean posuere ante ut neque. Morbi sollicitudin congue felis. Praesent turpis diam, iaculis sed, pharetra non, mollis ac, mauris. Phasellus nisi ipsum, pretium vitae, tempor sed, molestie eu, dui. Duis lacus purus, tristique ut, iaculis cursus, tincidunt vitae, risus. Sed commodo. *** sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Sed urna. . Duis convallis ultrices nisi. Maecenas non ligula. Nunc nibh est, tincidunt in, placerat sit amet, vestibulum a, nulla. Praesent porttitor turpis eleifend ante. Morbi sodales. Sed augue tortor, sodales id, luctus et, pulvinar ut, eros. Suspendisse vel dolor. Sed quam. Curabitur ut massa vitae eros euismod aliquam. Pellentesque sit amet elit. Vestibulum interdum pellentesque augue. Cras mollis arcu sit amet purus. Donec augue. Nam mollis tortor a elit. Nulla viverra nisl vel mauris. Vivamus sapien. nascetur ridiculus mus. Nam justo lorem, aliquam luctus, sodales et, semper sed, enim Nam justo lorem, aliquam luctus, sodales et,nAenean posuere ante ut neque. Morbi sollicitudin congue felis. Praesent turpis diam, iaculis sed, pharetra non, mollis ac, mauris. Phasellus nisi ipsum, pretium vitae, tempor sed, molestie eu, dui. Duis lacus purus, tristique ut, iaculis cursus, tincidunt vitae, risus. Sed commodo. *** sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nam justo lorem, aliquam luctus, sodales et, semper sed, enim Nam justo lorem, aliquam luctus, sodales et, semper sed, enim Nam justo lorem, aliquam luctus, sodales et, semper sed, enim nAenean posuere ante ut neque. Morbi sollicitudin congue felis. Praesent turpis diam, iaculis sed, pharetra non, mollis ac, mauris. Phasellus nisi ipsum, pretium vitae, tempor sed, molestie eu, dui. Duis lacus purus, tristique ut, iaculis cursus, tincidunt vitae, risus. Sed commodo. *** sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Sed urna. . Duis convallis ultrices nisi. Maecenas non ligula. Nunc nibh est, tincidunt in, placerat sit amet, vestibulum a, nulla. Praesent porttitor turpis eleifend ante. Morbi sodales.nAenean posuere ante ut neque. Morbi sollicitudin congue felis. Praesent turpis diam, iaculis sed, pharetra non, mollis ac, mauris. Phasellus nisi ipsum, pretium vitae, tempor sed, molestie eu, dui. Duis lacus purus, tristique ut, iaculis cursus, tincidunt vitae, risus. Sed commodo. *** sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Sed urna. . Duis convallis ultrices nisi. Maecenas non ligula. Nunc nibh est, tincidunt in, placerat sit amet, vestibulum a, nulla. Praesent porttitor turpis eleifend ante. Morbi sodales. Sed augue tortor, sodales id, luctus et, pulvinar ut, eros. Suspendisse vel dolor. Sed quam. Curabitur ut massa vitae eros euismod aliquam. Pellentesque sit amet elit. Vestibulum interdum pellentesque augue. Cras mollis arcu sit amet purus. Donec augue. Nam mollis tortor a elit. Nulla viverra nisl vel mauris. Vivamus sapien. nascetur ridiculus mus. Nam justo lorem, aliquam luctus, sodales et, semper sed, enim Nam justo lorem, aliquam luctus, sodales et,nAenean posuere ante ut neque. Morbi sollicitudin congue felis. Praesent turpis diam, iaculis sed, pharetra non, mollis ac, mauris. Phasellus nisi ipsum, pretium vitae, tempor sed, molestie eu, dui. Duis lacus purus, tristique ut, iaculis cursus, tincidunt vitae, risus. Sed commodo. *** sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nam justo lorem, aliquam luctus, sodales et, semper sed, enim Nam justo lorem, aliquam luctus, sodales et, semper sed, enim Nam justo lorem, aliquam luctus, sodales et, semper sed, enim nAenean posuere ante ut neque. Morbi sollicitudin congue felis. Praesent turpis diam, iaculis sed, pharetra non, mollis ac, mauris. Phasellus nisi ipsum, pretium vitae, tempor sed, molestie eu, dui. Duis lacus purus, tristique ut, iaculis cursus, tincidunt vitae, risus. Sed commodo. *** sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Sed urna. . Duis convallis ultrices nisi. Maecenas non ligula. Nunc nibh est, tincidunt in, placerat sit amet, vestibulum a, nulla. Praesent porttitor turpis eleifend ante. Morbi sodales.nAenean posuere ante ut neque. Morbi sollicitudin congue felis. Praesent turpis diam, iaculis sed, pharetra non, mollis ac, mauris. Phasellus nisi ipsum, pretium vitae, tempor sed, molestie eu, dui. Duis lacus purus, tristique ut, iaculis cursus, tincidunt vitae, risus. Sed commodo. *** sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Sed urna. . Duis convallis ultrices nisi. Maecenas non ligula. Nunc nibh est, tincidunt in, placerat sit amet, vestibulum a, nulla. Praesent porttitor turpis eleifend ante. Morbi sodales. Sed augue tortor, sodales id, luctus et, pulvinar ut, eros. Suspendisse vel dolor. Sed quam. Curabitur ut massa vitae eros euismod aliquam. Pellentesque sit amet elit. Vestibulum interdum pellentesque augue. Cras mollis arcu sit amet purus. Donec augue. Nam mollis tortor a elit. Nulla viverra nisl vel mauris. Vivamus sapien. nascetur ridiculus mus. Nam justo lorem, aliquam luctus, sodales et, semper sed, enim Nam justo lorem, aliquam luctus, sodales et,nAenean posuere ante ut neque. Morbi sollicitudin congue felis. Praesent turpis diam, iaculis sed, pharetra non, mollis ac, mauris. Phasellus nisi ipsum, pretium vitae, tempor sed, molestie eu, dui. Duis lacus purus, tristique ut, iaculis cursus, tincidunt vitae, risus. Sed commodo. *** sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nam justo lorem, aliquam luctus, sodales et, semper sed, enim Nam justo lorem, aliquam luctus, sodales et, semper sed, enim Nam justo lorem, aliquam luctus, sodales et, semper sed, enim nAenean posuere ante ut neque. Morbi sollicitudin congue felis. Praesent turpis diam, iaculis sed, pharetra non, mollis ac, mauris. Phasellus nisi ipsum, pretium vitae, tempor sed, molestie eu, dui. Duis lacus purus, tristique ut, iaculis cursus, tincidunt vitae, risus. Sed commodo. *** sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Sed urna. . Duis convallis ultrices nisi. Maecenas non ligula. Nunc nibh est, tincidunt in, placerat sit amet, vestibulum a, nulla. Praesent porttitor turpis eleifend ante. Morbi sodales.nAenean posuere ante ut neque. Morbi sollicitudin congue felis. Praesent turpis diam, iaculis sed, pharetra non, mollis ac, mauris. Phasellus nisi ipsum, pretium vitae, tempor sed, molestie eu, dui. Duis lacus purus, tristique ut, iaculis cursus, tincidunt vitae, risus. Sed commodo. *** sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Sed urna. . Duis convallis ultrices nisi. Maecenas non ligula. Nunc nibh est, tincidunt in, placerat sit amet, vestibulum a, nulla. Praesent porttitor turpis eleifend ante. Morbi sodales."); | |
// Add text to the document | |
box.Paragraphs.Add(text2); | |
page.Paragraphs.Add(box); | |
// Save the PDF document | |
document.Save("Generated-PDF.pdf"); |

Insert Image in a PDF using C#
The following steps demonstrate how to insert images in PDF documents.
- Create a new PDF document or open an existing one using Document class.
- Get the page you want to insert an image in.
- Add the image to the page’s images.
- Use GSave, ConcatenateMatrix, and Do operators to place the image on the page.
- Save the PDF document using Document.Save() method.
The following code sample shows how to insert an image in PDF using C#.
// Load PDF document | |
Document document = new Document(); | |
// Add page | |
Aspose.Pdf.Page page = document.Pages.Add(); | |
// Set coordinates | |
int lowerLeftX = 100; | |
int lowerLeftY = 100; | |
int upperRightX = 250; | |
int upperRightY = 250; | |
// Load image into stream | |
FileStream imageStream = new FileStream("aspose_pdf.png", FileMode.Open); | |
// Add image to Images collection of Page Resources | |
page.Resources.Images.Add(imageStream); | |
// Using GSave operator: this operator saves current graphics state | |
page.Contents.Add(new Aspose.Pdf.Operators.GSave()); | |
// Create Rectangle and Matrix objects | |
Aspose.Pdf.Rectangle rectangle = new Aspose.Pdf.Rectangle(lowerLeftX, lowerLeftY, upperRightX, upperRightY); | |
//Matrix matrix = new Matrix(new double[] { rectangle.URX - rectangle.LLX, 0, 0, rectangle.URY - rectangle.LLY, rectangle.LLX, rectangle.LLY }); | |
Matrix matrix = new Matrix(new double[] { 200, 0, 0, 200, 200, 600 }); | |
// Using ConcatenateMatrix (concatenate matrix) operator: defines how image must be placed | |
page.Contents.Add(new Aspose.Pdf.Operators.ConcatenateMatrix(matrix)); | |
XImage ximage = page.Resources.Images[page.Resources.Images.Count]; | |
// Using Do operator: this operator draws image | |
page.Contents.Add(new Aspose.Pdf.Operators.Do(ximage.Name)); | |
// Using GRestore operator: this operator restores graphics state | |
page.Contents.Add(new Aspose.Pdf.Operators.GRestore()); | |
// Save the PDF document | |
document.Save("Generated-PDF.pdf"); |

Create Table in a PDF File using C#
The table is used to organize the data in the form of rows and columns and to provide a quick overview of the information. In order to create a table in the PDF document, follow the below steps.
- Create an object of Document class to create a new PDF or load an existing one.
- Access the page you want to create a table in.
- Create an instance of Table class.
- Set the table’s border and cells’ border using the BorderInfo class.
- Create and add a new Row to the Table.Rows collection.
- Add cells to the Row.Cells collection.
- Add the table to the page using Page.Paragraphs.Add() method.
- Save the PDF document using Document.Save() method.
The following code sample shows how to create a table in PDF using C#.
// Load PDF document | |
Document document = new Document(); | |
// Add page | |
Aspose.Pdf.Page page = document.Pages.Add(); | |
// Initializes a new instance of the Table | |
Aspose.Pdf.Table table = new Aspose.Pdf.Table(); | |
// Set the table border color as LightGray | |
table.Border = new Aspose.Pdf.BorderInfo(Aspose.Pdf.BorderSide.All, .5f, Aspose.Pdf.Color.FromRgb(System.Drawing.Color.LightGray)); | |
// Set the border for table cells | |
table.DefaultCellBorder = new Aspose.Pdf.BorderInfo(Aspose.Pdf.BorderSide.All, .5f, Aspose.Pdf.Color.FromRgb(System.Drawing.Color.LightGray)); | |
// Create a loop to add 10 rows | |
for (int row_count = 1; row_count < 10; row_count++) | |
{ | |
// Add row to table | |
Aspose.Pdf.Row row = table.Rows.Add(); | |
// Add table cells | |
row.Cells.Add("Column (" + row_count + ", 1)"); | |
row.Cells.Add("Column (" + row_count + ", 2)"); | |
row.Cells.Add("Column (" + row_count + ", 3)"); | |
} | |
// Add table to the page | |
page.Paragraphs.Add(table); | |
// Save the PDF document | |
document.Save("Generated-PDF.pdf"); |

Add Annotation in a PDF using C#
Annotations are graphical objects that are used to provide additional information about the content in the PDF documents. PDF format supports various annotations including text, highlight, line, notes, and etc. The following are the steps to add an annotation in a PDF document.
- Create a new PDF document or load an existing one.
- Choose the page to which you want to add an annotation.
- Create a new annotation such as TextAnnotation, LineAnnotation, HighlightAnnotation, etc.
- Set the properties of the annotation.
- Add annotation to the Page.Annotations collection.
- Generate the PDF using the Document.Save() method.
The following code sample shows how to add an annotation to PDF using C#.
// Load PDF document | |
Document document = new Document(); | |
// Add page | |
Aspose.Pdf.Page page = document.Pages.Add(); | |
// Create annotation | |
TextAnnotation textAnnotation = new TextAnnotation(page, new Aspose.Pdf.Rectangle(200, 400, 400, 600)); | |
textAnnotation.Title = "Sample Annotation Title"; | |
textAnnotation.Subject = "Sample Subject"; | |
textAnnotation.State = AnnotationState.Accepted; | |
textAnnotation.Contents = "Sample contents for the annotation"; | |
textAnnotation.Open = true; | |
textAnnotation.Icon = TextIcon.Key; | |
Border border = new Border(textAnnotation); | |
border.Width = 5; | |
border.Dash = new Dash(1, 1); | |
textAnnotation.Border = border; | |
textAnnotation.Rect = new Aspose.Pdf.Rectangle(200, 400, 400, 600); | |
// Add annotation in the annotations collection of the page | |
page.Annotations.Add(textAnnotation); | |
// Save the PDF document | |
document.Save("Generated-PDF.pdf"); |

Add Hyperlinks to a PDF File using C#
You can also add hyperlinks to a PDF document using the Link Annotation. The following are the steps to perform this operation.
- Create a new Document object.
- Access the page where you want to add the hyperlink.
- Create an instance of the LinkAnnotation class.
- Set LinkAnnotation object’s properties including the action URI.
- Add the link to the Page.Annotations collection.
- Use the FreeTextAnnotation class to set the text of the hyperlink.
- Add FreeTextAnnotation object to the Page.Annotations collection.
- Create PDF document using Document.Save() method.
The following code sample shows how to add a hyperlink to a PDF document using C#.
// Load PDF document | |
Document document = new Document(); | |
// Add page | |
Aspose.Pdf.Page page = document.Pages.Add(); | |
// Create Link annotation object | |
LinkAnnotation link = new LinkAnnotation(page, new Aspose.Pdf.Rectangle(100, 800, 250, 750)); | |
// Create border object for LinkAnnotation | |
Border border = new Border(link); | |
// Set the border width value as 0 | |
border.Width = 1; | |
// Set the border for LinkAnnotation | |
link.Border = border; | |
// Specify the link type as remote URI | |
link.Action = new GoToURIAction("www.aspose.com"); | |
// Add link annotation to annotations collection of first page of PDF file | |
page.Annotations.Add(link); | |
// Create Free Text annotation for the link's text | |
FreeTextAnnotation textAnnotation = new FreeTextAnnotation(document.Pages[1], new Aspose.Pdf.Rectangle(100, 800, 250, 750), new DefaultAppearance(Aspose.Pdf.Text.FontRepository.FindFont("TimesNewRoman"), 10, System.Drawing.Color.Blue)); | |
// String to be added as Free text | |
textAnnotation.Contents = "Link to Aspose website"; | |
// Set the border for Free Text Annotation | |
textAnnotation.Border = border; | |
// Add FreeText annotation to annotations collection of first page of Document | |
page.Annotations.Add(textAnnotation); | |
// Save the PDF document | |
document.Save("Generated-PDF.pdf"); |

Create Bookmarks in a PDF using C#
Bookmarks are used to navigate to a particular section or page in PDF documents. Aspose.PDF for .NET allows you to add or manipulate bookmarks. The following are the steps to create and add a bookmark in a PDF document.
- Create a PDF document or open an existing one.
- Create a new bookmark object using the OutlineItemCollection class.
- Add bookmarks to Document.Outlines collection.
- Create the PDF document using Document.Save() method.
The following code sample shows how to create a PDF document with bookmarks using C#.
// Load PDF document | |
Document document = new Document(); | |
// Add page | |
Aspose.Pdf.Page page = document.Pages.Add(); | |
// Create a parent bookmark object | |
OutlineItemCollection pdfOutline = new OutlineItemCollection(document.Outlines); | |
pdfOutline.Title = "Parent Outline"; | |
pdfOutline.Italic = true; | |
pdfOutline.Bold = true; | |
// Create a child bookmark object | |
OutlineItemCollection pdfChildOutline = new OutlineItemCollection(document.Outlines); | |
pdfChildOutline.Title = "Child Outline"; | |
pdfChildOutline.Italic = true; | |
pdfChildOutline.Bold = true; | |
// Add child bookmark in parent bookmark's collection | |
pdfOutline.Add(pdfChildOutline); | |
// Add parent bookmark in the document's outline collection. | |
document.Outlines.Add(pdfOutline); | |
// Save the PDF document | |
document.Save("Generated-PDF.pdf"); |

Conclusion
In this article, I have shown you how to create PDF files from scratch using C#. The step by step guide and code samples demonstrate how to add text, image, table, annotation, hyperlink, and bookmarks in the PDF files programmatically. You can explore other features of Aspose’s .NET PDF Library using the documentation.