From e5fcc04bfa2498046dba637dab063f35989b239d Mon Sep 17 00:00:00 2001 From: immankumarsync Date: Mon, 8 Sep 2025 13:16:16 +0530 Subject: [PATCH] 977382: Add API links in MAUI PDF Viewer --- .../PDF/PDF-Viewer/maui/Print-a-Document.md | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/Document-Processing/PDF/PDF-Viewer/maui/Print-a-Document.md b/Document-Processing/PDF/PDF-Viewer/maui/Print-a-Document.md index 588ce5240..8b0a968a7 100644 --- a/Document-Processing/PDF/PDF-Viewer/maui/Print-a-Document.md +++ b/Document-Processing/PDF/PDF-Viewer/maui/Print-a-Document.md @@ -38,12 +38,12 @@ Below is an example of the print preview dialog on the Android platform. The app ## How to adjust the print quality on the Windows platform? -[SfPdfViewer](https://help.syncfusion.com/cr/maui/Syncfusion.Maui.PdfViewer.SfPdfViewer.html) allows users to adjust the printing quality on the Windows platform using the `PrintSettings.PrintQuality` API. The `PrintQuality` enumeration supports the below quality levels: -* Low - Optimizes print speed and uses minimal memory during printing. -* Default - Suitable for standard text and basic graphics, while maintaining the quality of previous versions. This is the default value. -* Medium - Balances clarity and performance during printing. -* High - Ensures sharper lines and crisp small annotations in the output. -* Ultra - Optimizes the detail on large-format print documents like CAD drawings and architectural plans. +[SfPdfViewer](https://help.syncfusion.com/cr/maui/Syncfusion.Maui.PdfViewer.SfPdfViewer.html) allows users to adjust the printing quality on the Windows platform using the [PrintSettings.PrintQuality](https://help.syncfusion.com/cr/maui/Syncfusion.Maui.PdfViewer.PrintSettings.html#Syncfusion_Maui_PdfViewer_PrintSettings_PrintQuality) API. The [PrintQuality](https://help.syncfusion.com/cr/maui/Syncfusion.Maui.PdfViewer.PrintQuality.html) enumeration supports the below quality levels: +* [Low](https://help.syncfusion.com/cr/maui/Syncfusion.Maui.PdfViewer.PrintQuality.html#Syncfusion_Maui_PdfViewer_PrintQuality_Low) - Optimizes print speed and uses minimal memory during printing. +* [Default](https://help.syncfusion.com/cr/maui/Syncfusion.Maui.PdfViewer.PrintQuality.html#Syncfusion_Maui_PdfViewer_PrintQuality_Default) - Suitable for standard text and basic graphics, while maintaining the quality of previous versions. This is the default value. +* [Medium](https://help.syncfusion.com/cr/maui/Syncfusion.Maui.PdfViewer.PrintQuality.html#Syncfusion_Maui_PdfViewer_PrintQuality_Medium) - Balances clarity and performance during printing. +* [High](https://help.syncfusion.com/cr/maui/Syncfusion.Maui.PdfViewer.PrintQuality.html#Syncfusion_Maui_PdfViewer_PrintQuality_High) - Ensures sharper lines and crisp small annotations in the output. +* [Ultra](https://help.syncfusion.com/cr/maui/Syncfusion.Maui.PdfViewer.PrintQuality.html#Syncfusion_Maui_PdfViewer_PrintQuality_Ultra) - Optimizes the detail on large-format print documents like CAD drawings and architectural plans. {% tabs %} {% highlight c# %} @@ -52,7 +52,7 @@ PdfViewer.PrintSettings.PrintQuality = PrintQuality.High; {% endhighlight %} {% endtabs %} -N> The `PrintQuality` API is only applicable to the Windows platform and does not affect printing on Android, iOS, or macOS. +N> The [PrintQuality](https://help.syncfusion.com/cr/maui/Syncfusion.Maui.PdfViewer.PrintSettings.html#Syncfusion_Maui_PdfViewer_PrintSettings_PrintQuality) API is only applicable to the Windows platform and does not affect printing on Android, iOS, or macOS. ## Limitations