Navigation/shortcuts #244
-
In a PDF it is possible to have text when clicked on that navigates the user to a different page, or even specific element. I cannot find any mention of it, so is this an existing feature of PDFsharp which is just not mentioned, or is this not possible? |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
When working with MigraDoc, use functions like AddHyperlink, AddWebLink, or AddMailLink from the FormattedText class. See AddFormattedText method of a Paragraph. When working with PDFsharp, use functions like AddFileLink, AddWebLink, AddEmbeddedDocumentLink, or AddDocumentLink of the PdfPage class. |
Beta Was this translation helpful? Give feedback.
When working with MigraDoc, use functions like AddHyperlink, AddWebLink, or AddMailLink from the FormattedText class. See AddFormattedText method of a Paragraph.
When working with PDFsharp, use functions like AddFileLink, AddWebLink, AddEmbeddedDocumentLink, or AddDocumentLink of the PdfPage class.