Unplanned
Last Updated: 16 Jun 2021 05:05 by ADMIN
The document seems empty when loaded in the viewer.
Unplanned
Last Updated: 02 Jun 2021 14:58 by ADMIN

Inserting PNG ImageSource into a document and applying the document instance directly to the RadPdfViewer`s Document property (without exporting to stream) leads to a wrong image rendering.

Workaround: Export the document with the PdfFormatProvider:

MemoryStream ms = new MemoryStream();
PdfFormatProvider pdfFormatProvider = new PdfFormatProvider();
pdfFormatProvider.Export(radFixedDocument, ms);

PdfDocumentSource source = new PdfDocumentSource(ms, pdfViewer.DefaultImportSettings);
this.pdfViewer.DocumentSource = source;

Unplanned
Last Updated: 26 May 2021 10:31 by ADMIN
When executing a Find command in Fit to Width scrolling mode (when more than one page and the result is on the next page) the search result is shown on the bottom of the page instead of the page being centered according to the content found, which results in the number of the current page as well (check the attached image). 
Unplanned
Last Updated: 26 May 2021 06:35 by ADMIN

Creating a PdfViewer instance without adding it in the visual tree, leads to leaked document presenter instances when the TouchManager is enabled.

Workaround: Disable the TouchManager:

Telerik.Windows.Input.Touch.TouchManager.IsEnabled = false;

Unplanned
Last Updated: 03 May 2021 08:35 by ADMIN
The editor text is not visible with some themes. Implement an event that allows you to access the active editor and change its properties. 
Unplanned
Last Updated: 21 Apr 2021 07:04 by ADMIN

Currently, the PdfProcessing document model is providing support only for a single function in the Function entry.

According to the PDF Specification: Function: A 1-in, n-out function or an array of n 1-in, 1-out functions.


Unplanned
Last Updated: 13 Aug 2020 16:59 by ADMIN
Importing a document, which contains pages with many geometries - such as paths, lines, and curves leads to degraded scrolling performance.
1 2 3 4 5