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();
        }
    }
}
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: 24 Aug 2016 14:11 by ADMIN
ADMIN
Created by: Stefan
Comments: 0
Category: PdfViewer
Type: Feature Request
3
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
Completed
Last Updated: 16 May 2016 08:40 by ADMIN
ADMIN
Created by: Dess | Tech Support Engineer, Principal
Comments: 0
Category: PdfViewer
Type: Feature Request
0

			
Completed
Last Updated: 03 Mar 2016 10:45 by ADMIN
Add two additional buttons in the RadPdfViewerNavigator like in Adobe Reader:
- The first one must fill the window with each page and scroll through pages continuously. 
- The second one must show one page at a time.

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: 26 Oct 2015 15:37 by ADMIN
Completed
Last Updated: 21 Apr 2015 14:31 by ADMIN
ADD. RadPdfViewer - add ability to show the document pages as thumbnails
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.
Declined
Last Updated: 02 Dec 2014 11:11 by ADMIN
Created by: Fabian
Comments: 1
Category: PdfViewer
Type: Feature Request
1

			
Completed
Last Updated: 28 Nov 2014 06:40 by ADMIN
ADMIN
Created by: Dess | Tech Support Engineer, Principal
Comments: 0
Category: PdfViewer
Type: Feature Request
0

			
Completed
Last Updated: 20 Oct 2014 11:50 by ADMIN
radPdfViewer1.PdfViewerElement.Find("keyword", PageNumber);

Resolution: 
You can use the following code snippet: 
radPdfViewer1.PdfViewerElement.Find(string text, int pageNumber)
Completed
Last Updated: 01 Oct 2014 13:13 by ADMIN
Declined
Last Updated: 22 Aug 2014 13:25 by ADMIN
ADMIN
Created by: Dess | Tech Support Engineer, Principal
Comments: 1
Category: PdfViewer
Type: Feature Request
0
Description: Single Page View Displays one page at a time, with no portion on other pages visible.
Declined
Last Updated: 22 Aug 2014 13:14 by ADMIN
ADMIN
Created by: Stefan
Comments: 1
Category: PdfViewer
Type: Feature Request
0
ADD. RadPdfViewer - add support for data fields
Completed
Last Updated: 24 Jul 2014 08:27 by ADMIN
This issue can be observed when the text is too big to fit in cell.
Completed
Last Updated: 28 Feb 2013 01:20 by ADMIN
ADMIN
Created by: Stefan
Comments: 0
Category: PdfViewer
Type: Feature Request
6
FIX. RadPdfViewer - add option for unloading documents. Make sure that manipulating with the file is possible after being unloaded.
1 2 3 4