-
Notifications
You must be signed in to change notification settings - Fork 257
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?
All reactions
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.
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.
All reactions
-
👍 1