Interaction mode in our UWP viewer
Nutrient UWP SDK offers a wide range of tools for manipulating a document. Examples of this are panning, searching, and adding annotations. A full list of these modes can be found in the API Reference.
For example, if you want to enter search mode programmatically, write the following:
await pdfView.Controller.SetInteractionModeAsync(InteractionMode.Search);
To exit out the mode, state the following:
await pdfView.Controller.SetInteractionModeAsync(InteractionMode.None);