Table of Contents
HtmlToPdf.ConvertUrl Method (String, PdfDocument, HtmlToPdfOptions)

Convert a Web page into PDF and write the output to a PdfDocument.

Syntax
 public static HtmlToPdfResult ConvertUrl(
   string url,
   PdfDocument doc,
   HtmlToPdfOptions options
);

Parameters

url
The Url of the page.
doc
The output PdfDocument object.
options
The conversion options that would override HtmlToPdf.Options if specified.

Return Value

Returns a HtmlToPdfResult object that contains additional information about the conversion.

Remarks

You can call this method multiple times on a single PdfDocument object to merge multiple Web pages into a single PDF file.

See Also