We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5b55e36 commit 83aaf6bCopy full SHA for 83aaf6b
Bookmarks/Multi-PDF-merger-with-paginated-TOC/.NET/Multi-PDF-merger-with-paginated-TOC/Program.cs
@@ -26,7 +26,6 @@ static void Main(string[] args)
26
// Store all loaded documents in an array
27
PdfLoadedDocument[] docs = { fsharpDoc, httpDoc, windowsStoreDoc };
28
29
-
30
// Create new document
31
document = new PdfDocument();
32
document.PageSettings.Size = fsharpDoc.Pages[0].Size;
@@ -56,7 +55,6 @@ static void Main(string[] args)
56
55
57
// Define TOC entries (title and corresponding page index)
58
List<(string Title, int PageIndex)> tocEntries = GetTocEntries();
59
60
// Adjust TOC entries
61
tocEntries = AdjustTOCEntriesWithOffset(tocEntries, tocPages);
62
// Draw TOC entries
0 commit comments