How to Enable and disable text selection in UWP PDF Viewer

14 Aug 20261 minute to read

The text selection feature of the PDF viewer can be disabled as shown in the following code.

pdfViewer.IsTextSelectionEnabled = false;
pdfViewer.IsTextSelectionEnabled = False

See Also