Duplicated
Last Updated: 26 Feb 2024 11:55 by ADMIN
ADMIN
Created by: Hristo
Comments: 2
Category: PdfViewer
Type: Feature Request
1

			
Unplanned
Last Updated: 17 Apr 2024 10:05 by ADMIN
Provide a new property that specifies FileName in SaveAs command.
Completed
Last Updated: 15 Aug 2017 10:54 by ADMIN
The events should provide information as to when a page is about to be rendered and when it is displayed in the control.
Completed
Last Updated: 15 Aug 2017 10:28 by ADMIN
Completed
Last Updated: 07 Jun 2023 10:39 by ADMIN
Release R2 2023 (2023.2.606)
ADMIN
Created by: Dess | Tech Support Engineer, Principal
Comments: 0
Category: PdfViewer
Type: Feature Request
1
According to PDF format specification, there are three valid encoding name values (MacRomanEncoding, MacExpertEncoding and WinAnsiEncoding). There are documents that instead of skipping the optional Encoding property, are writing invalid /NULL name value in the font dictionary. Currently, in this invalid document scenario RadPdfViewer throws and catches Exception and this results in missing text content. 

We may handle this invalid document scenario by ignoring the invalid Encoding value.
Unplanned
Last Updated: 24 Oct 2017 12:58 by ADMIN
ADMIN
Created by: Dimitar
Comments: 0
Category: PdfViewer
Type: Feature Request
1

			
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: 15 Aug 2017 10:02 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: 02 Dec 2014 11:11 by ADMIN
Created by: Fabian
Comments: 1
Category: PdfViewer
Type: Feature Request
1

			
Unplanned
Last Updated: 15 Aug 2017 10:02 by ADMIN
Created by: Brian
Comments: 3
Category: PdfViewer
Type: Feature Request
1
Include Marquee Zoom as tool.
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)
Unplanned
Last Updated: 21 Jun 2018 14:03 by ADMIN
Created by: Jérôme
Comments: 3
Category: PdfViewer
Type: Feature Request
0
Add a navigation pane to view attachments under a pdf. it is possible to have various attachments under a pdf file, such has another pdf. For example, when converting an email with attachments, the resulting pdf has attachments. 

RadPdfViewer has no possibility to view those right now. Could be an event and let the calling program manage this.

For our needs, I would like an event, because our attached files are also pdfs, so I could open them in a new tab
Declined
Last Updated: 17 Sep 2016 11:33 by ADMIN
Created by: Bruce
Comments: 5
Category: PdfViewer
Type: Feature Request
0
PDF Export needs to support certificate signatures so the end user of the document knows the document hasn't been changed.
Completed
Last Updated: 04 Jan 2017 15:01 by ADMIN
Note: If you use the next button to navigate to the next search result, the user should be notified when the end of the document is reached as well.

Workaround:

public Form1()
{
    InitializeComponent(); 
    this.radPdfViewer1.LoadDocument(@"..\..\..\samplePdf.pdf"); 

    //create a new button
    CommandBarButton findNext = new CommandBarButton();
    findNext.Text = PdfViewerLocalizationProvider.CurrentProvider.GetLocalizedString(PdfViewerStringId.NavigatorFindNextButton);
    findNext.Click += findNext_Click;
    findNext.Image = this.radPdfViewerNavigator1.FindNextButton.Image;
    //hide the currently available button
    this.radPdfViewerNavigator1.DefaultStrip.Items.Add(findNext);
    this.radPdfViewerNavigator1.FindNextButton.Visibility = ElementVisibility.Collapsed;
}

private void findNext_Click(object sender, EventArgs e)
{
    if (this.radPdfViewerNavigator1.SearchTextBox.Text != string.Empty)
    { 
        if (this.radPdfViewerNavigator1.AssociatedViewer == null || this.radPdfViewerNavigator1.AssociatedViewer.Document == null)
        {
            return;
        }

        PropertyInfo internalDocumentPI = typeof(RadFixedDocument).GetProperty("InternalDocument", BindingFlags.NonPublic | BindingFlags.Instance);
        object internalDocument = internalDocumentPI.GetValue(this.radPdfViewerNavigator1.AssociatedViewer.Document, null);
        object textSearch = internalDocument.GetType().GetProperty("TextSearch", BindingFlags.NonPublic | BindingFlags.Instance).GetValue(internalDocument, null);
        MethodInfo mi = textSearch.GetType().GetMethod("Find", BindingFlags.Public | BindingFlags.Instance);
        TextSearchOptions searchOptions = new TextSearchOptions(false);
        SearchResult searchResult = mi.Invoke(textSearch, new object[2] { this.radPdfViewerNavigator1.SearchTextBox.Text, searchOptions }) as SearchResult;
        if (searchResult.Result != null)
        {
            this.radPdfViewerNavigator1.AssociatedViewer.Select(searchResult);
        }
        else
        {
            RadMessageBox.Show("No matches");
        }
    }
}
Unplanned
Last Updated: 15 Aug 2017 10:02 by ADMIN
Unplanned
Last Updated: 06 Nov 2018 09:45 by ADMIN
ADMIN
Created by: Dess | Tech Support Engineer, Principal
Comments: 0
Category: PdfViewer
Type: Feature Request
0

			
Completed
Last Updated: 26 Oct 2015 15:37 by ADMIN
Unplanned
Last Updated: 26 Mar 2018 10:47 by ADMIN