Adding Lists to PDF
Add ordered and unordered lists to a PDF using DynamicPDF Core Suite.
How to Add Ordered List to PDF in C#
The following steps and sample code illustrate how to add an Ordered List to a PDF document using DynamicPDF Core Suite.
Steps for Adding an Ordered List to a PDF Document
- Create a
Document
object. - Create a
Page
object and add it to to the Document instance. - Create a
OrderedList
object. - Set the list's parameters (Margins, Bullet prefix, Bullet suffix, Text color).
- Create
ListItem
and add it to the OrderedList instance along with the display text. - Optionally, you can create a
OrderedSubList
with numbering style and create a sub-list for the List. - Add the OrderedList instance to the Page instance.
- Save the PDF Document.
Sample Code - C#
Document document = new Document();
Page page = new Page();
OrderedList list = new OrderedList(50, 50, 300, 500);
list.ListItemTopMargin = 5;
list.ListItemBottomMargin = 5;
list.BulletPrefix = "(";
list.BulletSuffix = ")";
list.TextColor = RgbColor.BlueViolet;
ListItem item1 = list.Items.Add("List item 1");
item1.Underline = true;
ListItem item2 = list.Items.Add("List item 2");
item2.Underline = true;
ListItem item3 = list.Items.Add("List item 3");
item3.Underline = true;
ListItem item4 = list.Items.Add("List item 4");
item4.Underline = true;
OrderedSubList subList1 = item1.SubLists.AddOrderedSubList(NumberingStyle.RomanUpperCase);
subList1.TextColor = RgbColor.HotPink;
ListItem item5 = subList1.Items.Add("Sub-list item 1");
ListItem item6 = subList1.Items.Add("Sub-list item 2");
OrderedSubList subList2 = item5.SubLists.AddOrderedSubList(NumberingStyle.AlphabeticLowerCase);
subList2.TextColor = RgbColor.DarkGoldenRod;
ListItem item7 = subList2.Items.Add("Second level sub-list item 1");
ListItem item8 = subList2.Items.Add("Second level sub-list item 2");
page.Elements.Add(list);
document.Pages.Add(page);
document.Draw(@"Output.pdf");
How to Add Unordered List to PDF in C#
The following steps illustrate adding an Unordered List to a PDF document using DynamicPDF Core Suite.
Steps for Adding an Unordered List to a PDF Document
- Create a
Document
object. - Create a
Page
object and add it to theDocument
instance. - Create a
UnorderedList
object. - Set the list's parameters (margins, text color).
- Create
ListItem
and add it to theUnorderedList
along with the display text. - Optionally, you can create a
UnorderedSubList
and create a sub-list for the list. - Add the
UnorderedList
instance to thePage
instance. - Save the PDF Document.
Sample Code - C#
Document document = new Document();
Page page = new Page();
UnorderedList list = new UnorderedList(50, 50, 300, 500);
list.ListItemTopMargin = 5;
list.ListItemBottomMargin = 5;
list.TextColor = RgbColor.BlueViolet;
ListItem item1 = list.Items.Add("List item 1");
item1.Underline = true;
ListItem item2 = list.Items.Add("List item 2");
item2.Underline = true;
ListItem item3 = list.Items.Add("List item 3");
item3.Underline = true;
ListItem item4 = list.Items.Add("List item 4");
item4.Underline = true;
UnorderedSubList subList1 = item1.SubLists.AddUnorderedSubList(UnorderedListStyle.Circle);
subList1.TextColor = RgbColor.HotPink;
ListItem item5 = subList1.Items.Add("Sub-list item 1");
ListItem item6 = subList1.Items.Add("Sub-list item 2");
UnorderedSubList subList2 = item5.SubLists.AddUnorderedSubList(UnorderedListStyle.Square);
subList2.TextColor = RgbColor.DarkGoldenRod;
ListItem item7 = subList2.Items.Add("Second level sub-list item 1");
ListItem item8 = subList2.Items.Add("Second level sub-list item 2");
page.Elements.Add(list);
document.Pages.Add(page);
document.Draw(outputPath);
GitHub Project
Clone or view the example project at GitHub. This example code is contained in the Examples/ListsExample.cs file.
Getting Started
NuGet Package
DynamicPDF Core Suite is available on NuGet and is part of the ceTe.DynamicPDF.CoreSuite.NET
package. The easiest way to install the DynamicPDF Core Suite package is by using the Visual Studio Package Manger. However, you can also download it directly from NuGet.
DynamicPDF Core Suite Information
More information can be found at the DynamicPDF Core Suite webpage.
- [DynamicPDF Core Suite for .NET](https://www.dynamicpdf.com/docs/dotnet/dynamic-pdf-core-suite-welcome"Create PDFs in .NET Core")
Available on Other Platforms
DynamicPDF Core Suite is also available for the Java and COM/ActiveX platforms. Refer to the respective product pages for more details.
- Java - DynamicPDF Generator for Java
- COM/ActiveX - DynamicPDF Generator for COM/ActiveX