New to Telerik UI for WinUI? Start a free 30-day trial
Interaction Modes
Updated on Mar 26, 2026
The PdfViewer component supports three modes that determine the behavior of the document presenter when interacting with the left click of the mouse.
- The default
Panmode of the PdfViewer allows you to pan the document on drag-over. - The
TextSelectionmode allows you to select text on drag-over and display a caret that can be positioned relatively to the text. - The
Nonemode disables the mouse interactions and you can neither pan nor select.
The available modes are part of the FixedDocumentViewerModes enumeration and can be set to the Mode property of the PdfViewer.
Set the interaction mode
C#
this.pdfViewer.Mode = FixedDocumentViewerMode.TextSelection;
You can also set the mode by using the buttons of the RadPdfViewerToolbar.
