From cf38a247cce801dd5c46841a943126c38b3337b3 Mon Sep 17 00:00:00 2001
From: Dimo Dimov <961014+dimodi@users.noreply.github.com>
Date: Thu, 31 Jul 2025 10:47:49 +0300
Subject: [PATCH] docs(PdfViewer): Add RenderScale parameter
---
components/pdfviewer/overview.md | 1 +
1 file changed, 1 insertion(+)
diff --git a/components/pdfviewer/overview.md b/components/pdfviewer/overview.md
index ff241d91f..61b31965f 100644
--- a/components/pdfviewer/overview.md
+++ b/components/pdfviewer/overview.md
@@ -68,6 +68,7 @@ The table below lists the PDF Viewer parameters. Also check the [PDF Viewer API
| `Height` | `string` | The PdfViewer height as a [CSS length value](slug:common-features/dimensions). If not set, the component will expand vertically, based on the loaded file. `Height` is required for the component paging and scrolling to work. |
| `MaxZoom` | `decimal`
(`4m`) | The largest possible zoom level. The default value allows zooming in 4 times (400%). |
| `MinZoom` | `decimal`
(`0.5m`) | The smallest possible zoom level. The default value allows zooming out to 50%. |
+| `RenderScale` | `double`
(`3.0`) | The resolution of the rendered PDF document. A higher value increases the quality, but also increases the memory consumption. Use a smaller value for large documents or less powerful user devices like mobile phones. |
| `Width` | `string` | The PdfViewer width as a [CSS length value](slug:common-features/dimensions). If not set, the component will expand horizontally to fill its parent. |
| `Zoom` | `decimal`
(`1.25m`) | The current zoom level. Use the parameter with two-way binding or with a [`ZoomChanged` event handler](slug:pdfviewer-events#zoomchanged). |
| `ZoomRate` | `decimal`
(`0.25m`) | The zoom level change that is used by the zoom in and zoom out buttons. |