
A tagged PDF file is a type of PDF that uses tags to define the logical structure of the content in the document. It is used to enhance the reading experience for those who use assistive technologies and screen readers. In a previous post, we covered creating PDF files within a .NET application. In this article, we will demonstrate how to create tagged PDF files programmatically in C# .NET.
- C# Library to Create Tagged PDF Files
- Create a Tagged PDF File
- Create a Tagged PDF with Nested Elements
- Styling Text Structure in a Tagged PDF
- Illustrating Structure Elements in a Tagged PDF
C# Library to Create Tagged PDF - Free Download
To create tagged PDF files, we will use Aspose.PDF for .NET. It is a robust library for PDF generation and manipulation in .NET applications. Using the library, you can seamlessly create, process, and convert PDF files of simple and complex layouts. You can download the library’s binaries or install it using NuGet.
PM> Install-Package Aspose.PDF
Create a Tagged PDF in C#
To create structure elements in a tagged PDF, Aspose.PDF for .NET provides the ITaggedContent interface. So let’s see how to use this interface to create a tagged PDF file in C#.
- Create a new PDF or load an existing one using the Document class.
- Get the reference of the TaggedContent of the document into an ITaggedContent object.
- Set title, header, and language and add elements to the PDF using the ITaggedContent object.
- Create a new ParagraphElement using ITaggedContent.CreateParagraphElement() method and set its text.
- Add the paragraph to the document using ITaggedContent.RootElement.AppendChild() method.
- Finally, save the PDF file using Document.Save(String) method.
The following code sample shows how to create a tagged PDF in C#.
// Create PDF document | |
Document document = new Document(); | |
// Get Content for work with Tagged PDF | |
ITaggedContent taggedContent = document.TaggedContent; | |
var rootElement = taggedContent.RootElement; | |
// Set title and language for document | |
taggedContent.SetTitle("Tagged Pdf Document"); | |
taggedContent.SetLanguage("en-US"); | |
// Add header | |
HeaderElement mainHeader = taggedContent.CreateHeaderElement(); | |
mainHeader.SetText("Main Header"); | |
// Add paragraph | |
ParagraphElement paragraphElement = taggedContent.CreateParagraphElement(); | |
paragraphElement.SetText("Lorem ipsum dolor sit amet, consectetur adipiscing elit. " + | |
"Aenean nec lectus ac sem faucibus imperdiet. Sed ut erat ac magna ullamcorper hendrerit. " + | |
"Cras pellentesque libero semper, gravida magna sed, luctus leo. Fusce lectus odio, laoreet" + | |
"nec ullamcorper ut, molestie eu elit. Interdum et malesuada fames ac ante ipsum primis in faucibus." + | |
"Aliquam lacinia sit amet elit ac consectetur. Donec cursus condimentum ligula, vitae volutpat" + | |
"sem tristique eget. Nulla in consectetur massa. Vestibulum vitae lobortis ante. Nulla ullamcorper" + | |
"pellentesque justo rhoncus accumsan. Mauris ornare eu odio non lacinia. Aliquam massa leo, rhoncus" + | |
"ac iaculis eget, tempus et magna. Sed non consectetur elit. Sed vulputate, quam sed lacinia luctus," + | |
"ipsum nibh fringilla purus, vitae posuere risus odio id massa. Cras sed venenatis lacus."); | |
rootElement.AppendChild(mainHeader); | |
rootElement.AppendChild(paragraphElement); | |
// Save tagged PDF | |
document.Save("tagged-pdf.pdf"); |
The following is the output of the above code sample.

C# Create a Tagged PDF with Nested Elements
In the previous example, we created a simple tagged PDF that contains a paragraph. Let’s now have a look at how to add nested elements in a tagged PDF. The following are the steps to perform this operation.
- Create a new PDF or load an existing one using the Document class.
- Get the reference of the TaggedContent of the document into an ITaggedContent object.
- Set title, header, and language and add elements to the PDF using the ITaggedContent object.
- Create a new ParagraphElement using ITaggedContent.CreateParagraphElement() method and set its text.
- Use SpanElement class to add the nested elements.
- Add nested element to paragraph using ParagraphElement.AppendChild() method.
- Add the paragraph to the document using ITaggedContent.RootElement.AppendChild() method.
- Finally, save the PDF file using Document.Save(String) method.
The following code sample shows how to add nested elements in a tagged PDF in C#.
// Create PDF document | |
Document document = new Document(); | |
// Get content for work with Tagged PDF | |
ITaggedContent taggedContent = document.TaggedContent; | |
var rootElement = taggedContent.RootElement; | |
// Set title and language for document | |
taggedContent.SetTitle("Tagged Pdf Document"); | |
taggedContent.SetLanguage("en-US"); | |
// Add header | |
HeaderElement mainHeader = taggedContent.CreateHeaderElement(); | |
mainHeader.SetText("Main Header"); | |
// Create paragraph | |
ParagraphElement paragraphWithQuotes = taggedContent.CreateParagraphElement(); | |
paragraphWithQuotes.StructureTextState.Font = FontRepository.FindFont("Calibri"); | |
paragraphWithQuotes.StructureTextState.MarginInfo = new MarginInfo(10, 5, 10, 5); | |
// Add span element | |
SpanElement spanElement1 = taggedContent.CreateSpanElement(); | |
spanElement1.SetText("Lorem ipsum dolor sit amet, consectetur adipiscing elit. Aenean nec lectus ac sem faucibus imperdiet. Sed ut erat ac magna ullamcorper hendrerit. Cras pellentesque libero semper, gravida magna sed, luctus leo. Fusce lectus odio, laoreet nec ullamcorper ut, molestie eu elit. Interdum et malesuada fames ac ante ipsum primis in faucibus. Aliquam lacinia sit amet elit ac consectetur. Donec cursus condimentum ligula, vitae volutpat sem tristique eget. Nulla in consectetur massa. Vestibulum vitae lobortis ante. Nulla ullamcorper pellentesque justo rhoncus accumsan. Mauris ornare eu odio non lacinia. Aliquam massa leo, rhoncus ac iaculis eget, tempus et magna. Sed non consectetur elit. "); | |
QuoteElement quoteElement = taggedContent.CreateQuoteElement(); | |
quoteElement.SetText("Sed vulputate, quam sed lacinia luctus, ipsum nibh fringilla purus, vitae posuere risus odio id massa."); | |
quoteElement.StructureTextState.FontStyle = FontStyles.Bold | FontStyles.Italic; | |
SpanElement spanElement2 = taggedContent.CreateSpanElement(); | |
spanElement2.SetText(" Sed non consectetur elit."); | |
// Append to paragraph | |
paragraphWithQuotes.AppendChild(spanElement1); | |
paragraphWithQuotes.AppendChild(quoteElement); | |
paragraphWithQuotes.AppendChild(spanElement2); | |
// Add to root element | |
rootElement.AppendChild(mainHeader); | |
rootElement.AppendChild(paragraphWithQuotes); | |
// Save tagged PDF | |
document.Save("tagged-pdf-nested-elements.pdf"); |
The following screenshot shows the tagged PDF with nested elements.

Styling Text Structure in a Tagged PDF in C#
You can also apply styling to the text in a tagged PDF by setting font style, family, size, etc. For this, Aspose.PDF for .NET provides Font, FontSize, FontStyle and ForegroundColor properties of StructureTextState class. The following code sample shows how to apply text styling in a tagged PDF in C#.
// Create PDF document | |
Document document = new Document(); | |
// Get content for work with Tagged PDF | |
ITaggedContent taggedContent = document.TaggedContent; | |
var rootElement = taggedContent.RootElement; | |
// Set title and language for document | |
taggedContent.SetTitle("Tagged Pdf Document"); | |
taggedContent.SetLanguage("en-US"); | |
// Add header | |
HeaderElement mainHeader = taggedContent.CreateHeaderElement(); | |
mainHeader.SetText("Main Header"); | |
// Create paragraph | |
ParagraphElement paragraphWithQuotes = taggedContent.CreateParagraphElement(); | |
taggedContent.RootElement.AppendChild(paragraphWithQuotes); | |
// Set styling | |
paragraphWithQuotes.StructureTextState.FontSize = 18F; | |
paragraphWithQuotes.StructureTextState.ForegroundColor = Color.Red; | |
paragraphWithQuotes.StructureTextState.FontStyle = FontStyles.Italic; | |
// Add text | |
paragraphWithQuotes.SetText("Red italic text."); | |
// Save tagged PDF | |
document.Save("tagged-pdf-text-styling.pdf"); |
C# Illustrating Structure Elements in a Tagged PDF
To illustrate the structure elements, Aspose.PDF for .NET provides IllustrationElement class. The following code sample shows how to use this class to illustrate the structural elements in a tagged PDF.
// Create PDF document | |
Document document = new Document(); | |
// Get content for work with Tagged PDF | |
ITaggedContent taggedContent = document.TaggedContent; | |
var rootElement = taggedContent.RootElement; | |
// Set title and language for document | |
taggedContent.SetTitle("Tagged Pdf Document"); | |
taggedContent.SetLanguage("en-US"); | |
IllustrationElement figure1 = taggedContent.CreateFigureElement(); | |
taggedContent.RootElement.AppendChild(figure1); | |
figure1.AlternativeText = "Figure One"; | |
figure1.Title = "Image 1"; | |
figure1.SetTag("Fig1"); | |
figure1.SetImage("aspose_pdf.png"); | |
// Save tagged PDF | |
document.Save("tagged-pdf-illustrating-structure.pdf"); |
Free PDF Library to Create Tagged PDF
You can get a free temporary license and create tagged PDF files without evaluation limitations.
Explore C# PDF Library
Besides, you can explore more about the C# PDF library using the documentation. In case you would have any questions or queries, you can contact us via our forum.
Conclusion
In this article, you have learned how to create tagged PDF files in C#. Furthermore, you have seen how to create nested elements, apply styling to text, and illustrate structure elements in a tagged PDF programmatically.