I'm sure this is possible but I cant quite get the provider usage figured out. I have a string of HTML I want to output as a PDF . This does not work, what am i doing wrong?
protected void test(string htmlString)
{
HtmlFormatProvider htmlDoc = new HtmlFormatProvider();
htmlDoc.Import(htmlString);
byte[] renderedBytes = null;
IFormatProvider<RadFlowDocument> formatProvider = new PdfFormatProvider();
using (MemoryStream ms = new MemoryStream())
{
formatProvider.Export(htmlDoc, ms); // this is invalid
renderedBytes = ms.ToArray();
}
Response.Clear();
Response.AppendHeader("Content-Disposition", "attachment; filename=ExportedFile" + ".pdf");
Response.ContentType = "application/pdf";
Response.BinaryWrite(renderedBytes);
Response.End();

I need help setting document margins when convert html to word using the following technique.
string html = "<p>hello world!</p>";
HtmlFormatProvider provider = new HtmlFormatProvider();
RadFlowDocument document = provider.Import(html);
I tried using the following with no luck
PageMargins = new Telerik.Windows.Documents.Primitives.Padding(30, 0, 0, 5);
Are there any examples showing what I require?
Thank you
Andy
I need help setting document margins when convert html to word using the following technique.
string html = "<p>hello world!</p>";
HtmlFormatProvider provider = new HtmlFormatProvider();
RadFlowDocument document = provider.Import(html);
I tried using the following with no luck
PageMargins = new Telerik.Windows.Documents.Primitives.Padding(30, 0, 0, 5);
Are there any examples showing what I require?
Thank you
Andy

Hi,
i have 2 RadFixedDouments and i want to merge them in one RadFixedDocument.
Merge method works ok but i add new page for each of document.
My goal is to create one document which looks like this:
1. Content from *NameOfFirstDocument*:
-- here content --
2. Content from *NameOfSecondDocument*:
-- here content --
I almost done this:
- created RadFixedDocument (call it Main),
- used RadFixedDocumentEditor.InsertBlock( block with "1. Content from *NameOfFirstDocument*:" ) on Main document,
- set FixedContentEditor proper position (under block),
- foreach Content element in one and only Page in FirstDocument use FixedContentEditor.Draw to add content (as a TextFragment) on Main document,
- the same things for second document.
The problem is when i'm exporting Main document to pdf, it is cutting content of each document if it is larger than one page.
It looks like FixedContentEditor.Draw add lines but it does not take in account page size.
Any help with copying content of one RadFixedDocument to other? It's strange i cant use in any of ways a RadFixedDocumentEditor to insert other RadFixedDocument content in next lines.
Thanks,
Jacob.

Hi,
here is my sample console app:
using System.IO;using Telerik.Windows.Documents.FormatProviders.Pdf;using Telerik.Windows.Documents.Model;namespace PdfExportTest{ class Program { static void Main(string[] args) { RadDocument doc = new RadDocument(); RadDocumentEditor editor = new RadDocumentEditor(doc); Section section = new Section(); doc.Sections.Add(section); editor.Document.CaretPosition.MoveToStartOfDocumentElement(section); editor.InsertLine("TEST"); var provider = new PdfFormatProvider(); using (Stream stream = new FileStream(@"C:\\temp\\test.pdf", FileMode.Create)) { provider.Export(doc, stream); } } }}When use search option to find "TEST", Adobe Reader shows it couldn't find any matching words.
Is it known issue that Adobe Reader can't find words in exported documents?
Thanks.

Hi,
I have a simple Word document with JUST a line of text and a DocumentVariable in it, named VAR1. I try to set a value for it in my ASP application, and it works, but when I try to update the field using the UpdateFields() methods, it throws a NullReferenceException. I think it might be a bug in the library, because I tried on several different documents. Can you please help me figure this out? The code it's pretty straightfoward. Maybe it's something wrong with the document?
DocxFormatProvider docxProvider = new DocxFormatProvider();
RadFlowDocument document;
using (Stream input = File.OpenRead(docxFilePath))
document = docxProvider.Import(input)
//document.DocumentVariables.Add("VAR_LINE1", "testline1");
document.DocumentVariables["VAR1"] = "testline1";
try
{
document.UpdateFields(); // throws exception
} catch (Exception ex) {}
Thank you!
Hi,
I am using the PdfFormatProvider to create pdf files from RadFlowDocument, however the result is not equal to the original layout.
Lines disappear and the table cell padding is wrong.
Please find attached:
Image1: The original file displayed in the RichTextEditor
Image2: The pdf file displayed in the PDF Viewer
Using a standard pdf printer form word renders the word file OK.
