Completed
Last Updated: 15 Aug 2017 10:28 by ADMIN
How to reproduce: check the attached project

Workaround: manually unload the document before disposing the control, the attached project includes a solution
Completed
Last Updated: 15 Aug 2017 10:28 by ADMIN
Unplanned
Last Updated: 14 Aug 2017 13:40 by ADMIN
Unplanned
Last Updated: 14 Aug 2017 13:07 by ADMIN
ADMIN
Created by: Hristo
Comments: 0
Category: PdfViewer
Type: Feature Request
5

			
Unplanned
Last Updated: 24 Oct 2017 12:58 by ADMIN
ADMIN
Created by: Dimitar
Comments: 0
Category: PdfViewer
Type: Feature Request
1

			
Completed
Last Updated: 16 Jan 2017 13:26 by ADMIN
How to reproduce: check the attached video
a slight cut off can also be observed with the ControlDefault and the TelerikMetro themes

Workaround: 
CommandBarDropDownList dropDownList = this.radPdfViewerNavigator1.CommandBarElement.FindDescendant<CommandBarDropDownList>();
dropDownList.MinSize = new Size(72, 22);
Completed
Last Updated: 13 Dec 2021 10:48 by ADMIN
Release R2 2020
Completed
Last Updated: 04 Jan 2017 15:01 by ADMIN
Unplanned
Last Updated: 17 Oct 2016 06:04 by ADMIN
This is not quite a valid PDF file scenario according to PDF file specification. However, we may try handling it in order to show the correct number of pages. When the kid is of type Pages, it should be added to the pages traversal recursion only the first time it is met.

The observed issue is demonstrated in the attached image. 

Completed
Last Updated: 20 Oct 2016 15:47 by ADMIN
To reproduce:
Print the attached document with the MS Xps printer or PrimoPDF. 
Unplanned
Last Updated: 28 Apr 2017 12:16 by ADMIN
Completed
Last Updated: 03 Nov 2016 09:34 by ADMIN
To reproduce:

public Form1()
{
    InitializeComponent();

    this.radPdfViewer1.DocumentLoaded += radPdfViewer1_DocumentLoaded;
}

private void radPdfViewer1_DocumentLoaded(object sender, EventArgs e)
{ 
    var pdf = (RadPdfViewerElement)sender;
    var doc = new RadPrintDocument();

    doc.AssociatedObject = pdf.ElementTree.Control as RadPdfViewer; 
    doc.PrinterSettings.PrintRange = System.Drawing.Printing.PrintRange.SomePages;
    doc.PrinterSettings.FromPage = 2;
    doc.PrinterSettings.ToPage = 1;
    doc.PrinterSettings.PrintFileName = @"..\..\Once upon a time.pdf"; 
    pdf.Print(showPrinterSettings: false, document: doc);
}

Workaround: check FromPage  before printing.
Completed
Last Updated: 15 Jan 2018 08:42 by ADMIN
ADMIN
Created by: Dimitar
Comments: 0
Category: PdfViewer
Type: Bug Report
2
There is opportunity to further optimize the caching mechanism of the image sources, which will reduce the memory consumption. The fast scrolling in a document containing big images could lead to an OutOfMemoryException.
Openining very large images as well. 
Duplicated
Last Updated: 02 Sep 2024 14:34 by ADMIN
ADMIN
Created by: Stefan
Comments: 0
Category: PdfViewer
Type: Feature Request
4
RadPdfViewer can not display annotated PDF file
 Kindly,i used VintaSoft SDk to Annotate PDF File, File is annotated successfully and i can open it with Adobe Reader and see annotations is added to it
 but while i try to view annotated PDF file using RadPDFViewer File will displayed without annotations ,only original content displayed.
Kindly find my attached AnnotatedPDFfile To be loaded in RadPDfViewer
Unplanned
Last Updated: 25 Aug 2016 05:42 by Mohammed
Created by: Mohammed
Comments: 2
Category: PdfViewer
Type: Feature Request
1
RadPdfViewer can not display annotated PDF file
 Kindly,i used VintaSoft SDk to Annotate PDF File, File is annotated successfully and i can open it with Adobe Reader and see annotations is added to it
 but while i try to view annotated PDF file using RadPDFViewer File will displayed without annotations ,only original content displayed.
Kindly find my attached AnnotatedPDFfile To be loaded in RadPDfViewer
Unplanned
Last Updated: 21 Oct 2016 09:31 by ADMIN
Workaround: 

public Form1()
{
    InitializeComponent();

    string pdfFilePath = Path.Combine(Application.StartupPath, "testfile1.pdf");
    radPdfViewer1.LoadDocument(pdfFilePath);

    this.radPdfViewer1.PdfViewerElement.VScrollBar.ValueChanged+=VScrollBar_ValueChanged;
}

private void VScrollBar_ValueChanged(object sender, EventArgs e)
{
    this.radPdfViewer1.PdfViewerElement.InvalidatePages();
}
Completed
Last Updated: 18 Jul 2023 14:26 by ADMIN
Release R2 2023 SP1
Completed
Last Updated: 30 May 2016 08:35 by ADMIN
Completed
Last Updated: 06 Sep 2016 07:30 by ADMIN
Workaround: until the feature be implemented one can print each page individually respecting its orientation whether it is portrait or landscape
public partial class Form1 : Form
{
    public Form1()
    {
        InitializeComponent();
 
        this.radPdfViewer1.LoadDocument(@"..\..\sample.pdf");
    }
 
    private void radButton1_Click(object sender, EventArgs e)
    {
        RadPrintDocument doc = new RadPrintDocument();
        doc.AssociatedObject = this.radPdfViewer1;
 
        for (int i = 0; i < this.radPdfViewer1.Document.Pages.Count; i++)
        {
            RadFixedPage page = this.radPdfViewer1.Document.Pages[i];
 
            doc.CurrentPage = i;
            doc.PrinterSettings.PrintRange = PrintRange.CurrentPage;
            doc.Landscape = page.ActualWidth > page.ActualHeight;
 
            doc.Print();
        }
    }
}