Skip to content

Instantly share code, notes, and snippets.

@GroupDocsGists
Last active March 27, 2023 06:31
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save GroupDocsGists/38f85092c5e482bf3c23050a2693627c to your computer and use it in GitHub Desktop.
Save GroupDocsGists/38f85092c5e482bf3c23050a2693627c to your computer and use it in GitHub Desktop.
XML Viewer | Render XML using C#
// XML Viewer - Render XML file as PDF using C#
using (Viewer viewer = new Viewer("/path/document.xml"))
{
PdfViewOptions viewOptions = new PdfViewOptions("/path/XML-to-PDF-{0}.pdf");
viewer.View(viewOptions);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment