This question is locked. New answers and comments are not allowed.
For some reasons my telerik radpdfviewer wont show text. pictures and lines shows fine on the document, just not text.
I have tryed several documents and everyone opens fine on the telerik silverlight demo example of the pdfviewer.
but if i try to load from stream or open it within the pdfviwer i get no text.......
please help
ps. i have the current version of radcontrols from telerik
I have tryed several documents and everyone opens fine on the telerik silverlight demo example of the pdfviewer.
but if i try to load from stream or open it within the pdfviwer i get no text.......
please help
ps. i have the current version of radcontrols from telerik
private void BuildAttachmentPdf(byte[] FileContent) { MemoryStream data = new MemoryStream(FileContent); DocumentSource = new PdfDocumentSource(data); RaisePropertyChanged("PdfSource"); } <telerik:RadPdfViewer Grid.Row="1" x:Name="pdfViewer" DocumentSource="{Binding DocumentSource}" />