How to: Convert an HTML Document to PDF format
The following code sample shows how to export an HTML document to PDF format using the RichEditDocumentServer.ExportToPdf method.
server.LoadDocument("Documents\\TextWithImages.htm");
server.ExportToPdf("Document_PDF.pdf");
System.Diagnostics.Process.Start("Document_PDF.pdf");
Pass the PdfExportOptions instance to the RichEditDocumentServer.ExportToPdf method to specify the exporting options (image quality, additional metadata, etc.).
Note
Implement the IUri