Completed
Last Updated: 26 Oct 2015 15:38 by ADMIN
ADMIN
Created by: Dess | Tech Support Engineer, Principal
Comments: 0
Category: PdfViewer
Type: Feature Request
0
http://docs.telerik.com/devtools/wpf/controls/radpdfviewer/document-model/exceptionhandling
Completed
Last Updated: 24 Jul 2015 07:35 by ADMIN
Unplanned
Last Updated: 15 Aug 2017 10:02 by ADMIN
ADMIN
Created by: Ivan Todorov
Comments: 0
Category: PdfViewer
Type: Feature Request
0
The PdfPrintPreviewDialog should allow the end user to resize it and the page preview in it should scale accordingly. This would allow the user to have a better preview of the print settings.
Completed
Last Updated: 24 Oct 2016 12:55 by ADMIN
To reproduce:

public Form1()
{
    InitializeComponent();

    radPdfViewer1.DocumentLoaded += radPdfViewer1_DocumentLoaded;
    radPdfViewer1.LoadDocument(@"..\..\TestDocument.pdf");
}

void radPdfViewer1_DocumentLoaded(object sender, EventArgs e)
{
    var pdfViewerElement = sender as RadPdfViewerElement;

    if (pdfViewerElement != null)
    {
        var myDocumentToPrint = new RadPrintDocument();
        myDocumentToPrint.AssociatedObject = pdfViewerElement;
        myDocumentToPrint.DefaultPageSettings.Margins = new System.Drawing.Printing.Margins(0, 0, 0, 0);
        myDocumentToPrint.Print();
    }
}
 
Please refer to the attached screenshots and sample pdf.

Workaround:  Specify the RadPrintDocument.DefaultPageSettings.Margins property on a way to have the right margin greater than 0 
Completed
Last Updated: 26 Apr 2016 12:10 by ADMIN
Unplanned
Last Updated: 13 Dec 2016 11:00 by ADMIN
When an image is actually consisting of a sequence of smaller images, sometimes white lines appear between the smaller images.
Unplanned
Last Updated: 30 Mar 2016 10:02 by ADMIN
Declined
Last Updated: 09 Apr 2015 12:59 by ADMIN
Created by: Mauro Pederzolli
Comments: 1
Category: PdfViewer
Type: Feature Request
3
Add rotate view button.
Completed
Last Updated: 03 Jun 2015 13:07 by ADMIN
To reproduce:
- Just show and close a form that contains pdf viewer with a loaded document several times. 
Completed
Last Updated: 18 Jul 2023 14:26 by ADMIN
Release R2 2023 SP1
ADMIN
Created by: Dess | Tech Support Engineer, Principal
Comments: 2
Category: PdfViewer
Type: Bug Report
4
Handled InvalidDataException occurs while Zip Library tries to decompress wrongly decrypted stream.
Completed
Last Updated: 14 Sep 2021 06:56 by ADMIN
ADMIN
Created by: Stefan
Comments: 10
Category: PdfViewer
Type: Feature Request
18
Import documents that use this type of encryption. Currently, a handled NotSupportedEncryptionException with message "The encryption method with code 5 is not supported." is thrown while importing such a document.
Completed
Last Updated: 14 Apr 2016 12:21 by ADMIN
Workaround: subscribe the RadPdfViewer control to the ViewerModeChanged event and in the handler, if the viewer mode is set to Pan, call the HideCaret method of the PdfViewerElement
private void radPdfViewer1_ViewerModeChanged(object sender, EventArgs e)
{
    if (this.radPdfViewer1.ViewerMode == Telerik.WinControls.UI.FixedDocumentViewerMode.Pan)
    {
        this.radPdfViewer1.PdfViewerElement.HideCaret();
    }
}


Unplanned
Last Updated: 30 Mar 2016 10:04 by ADMIN
Workaround: update manually the RadPdfViewerNavigator.CurrentPageTextBox.
Unplanned
Last Updated: 30 Mar 2016 09:48 by ADMIN
Unplanned
Last Updated: 15 Aug 2017 10:02 by ADMIN
ADMIN
Created by: Dess | Tech Support Engineer, Principal
Comments: 0
Category: PdfViewer
Type: Feature Request
1

			
Declined
Last Updated: 27 Feb 2015 14:27 by ADMIN
Completed
Last Updated: 18 Feb 2015 14:43 by ADMIN
If the document is using fonts that are not embedded and are not installed on client machine the text is not displayed.
 
Completed
Last Updated: 31 Mar 2015 16:24 by ADMIN
To reproduce: 
1. Drag and drop RadPdfViewer and RadPdfViewerNavigator
2. Load attached file from ticket
3. Click PrintPreview button from navigator and you will see that NullRefference exception is thrown. 

Workaround: 
You can set the ShowPrintPreview property to false of RadPrintViewNavigator
this.radPdfViewerNavigator1.ShowPrintPreview = false;
Completed
Last Updated: 16 Nov 2015 13:48 by ADMIN