Document Link Navigation in .NET MAUI PDF Viewer (SfPdfViewer)

19 Aug 20251 minute to read

The PDF viewer allows navigating from one part of the PDF document to another using document link annotations. When a document link annotation is tapped, the PDF viewer scrolls to its destination. This type of link annotation is most often used to represent the table of contents of a PDF document.

The document link navigation can be turned on or off using the EnableDocumentLinkNavigation property. The default value of this property is true. The code snippet below illustrates disabling the document link navigation.

pdfViewer.EnableDocumentLinkNavigation = false;