Announcements
The issue you’re describing in the Power Apps PDF Viewer control—where the "Show Controls" property doesn't persist as expected—may be a bug or a behavior influenced by the app’s logic or settings. Here's a breakdown of potential causes and solutions:
Control Resetting Issue:
State Management Problem:
Platform or Environment Bug:
Conditional Logic or Formula:
true
// Set the variable when the app starts OnStart: Set(ShowPDFControls, true); // Use the variable in the "Show Controls" property Show Controls: ShowPDFControls
If the issue persists despite the above steps, consider creating custom zoom and navigation controls (e.g., buttons to increment/decrement zoom level or navigate pages) using the PDF Viewer’s properties:
Zoom
Document.Pages
Here’s an example of custom controls:
// Buttons for Zoom OnSelect (Zoom In): Set(PDFZoom, PDFZoom + 10); OnSelect (Zoom Out): Set(PDFZoom, PDFZoom - 10); // Buttons for Page Navigation OnSelect (Next Page): Set(CurrentPage, Min(CurrentPage + 1, PDFDocument.Pages)); OnSelect (Previous Page): Set(CurrentPage, Max(CurrentPage - 1, 1)); // Apply the variables to the PDF Viewer properties Zoom: PDFZoom Page: CurrentPage
Under review
Thank you for your reply! To ensure a great experience for everyone, your content is awaiting approval by our Community Managers. Please check back later.
Congratulations to our 2026 Super Users!
Congratulations to our 2025 community superstars!
These are the community rock stars!
Stay up to date on forum activity by subscribing.
Vish WR 893
Valantis 571
11manish 482